@charset "UTF-8";
:root {
  --color-dark: #0f0f0f;
  --color-grey: #666666;
  --color-grey-dark: #232b2b;
  --color-grey-mid: #ccc;
  --color-grey-med: #858585;
  --color-grey-light: #edf1f7;
  --color-blue-base: #ecf6fd;
  --color-blue-light: #e7f1ff;
  --color-blue-mid: #c7e8ff;
  --color-pink: #f048b5;
  --bg-dark: hsl(205 79% 85%);
  --bg: hsl(205 80% 90%);
  --bg-light: hsl(204 77% 95%);
  --text: hsl(0 0% 5%);
  --text-muted: hsl(0 0% 30%);
  --highlight: hsl(300 50% 100%);
  --border: hsl(300 0% 50%);
  --border-muted: hsl(340 0% 62%);
  --accent-pink: hsl(322 87% 62%);
  --spacing1: 4px;
  --spacing2: 8px;
  --spacing3: 16px;
  --spacing4: 20px;
  --spacing5: 40px;
  --spacing6: 80px;
  --spacing6-5: 120px;
  --spacing7: 160px;
  --spacing8: 240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 6px 24px rgba(46, 106, 234, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 34px rgba(46, 106, 234, 0.15),
  	0 6px 16px rgba(0, 0, 0, 0.08);
  --site-width: 95%;
  --site-max-width: 1450px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  --heading1-font-size: clamp(2.5rem, 5vw, 3.25rem);
  --heading1-font-weight: 700;
  --heading1-line-height: 1.2;
  --heading1-letter-spacing: -0.02em;
  --heading2-font-size: clamp(2rem, 4vw, 2.6rem);
  --heading2-font-weight: 600;
  --heading2-line-height: 1.25;
  --heading2-letter-spacing: -0.01em;
  --heading3-font-size: clamp(1.5rem, 3vw, 2rem);
  --heading3-font-weight: 600;
  --heading3-line-height: 1.33;
  --heading3-letter-spacing: -0.005em;
  --subtitle-font-size: clamp(1.15rem, 2vw, 1.3rem);
  --subtitle-font-weight: 500;
  --subtitle-line-height: 1.5;
  --subtitle-letter-spacing: 0em;
  --body-font-size: clamp(1.15rem, 2vw, 1.3rem);
  --body-font-weight: 300;
  --body-line-height: 1.5;
  --body-letter-spacing: 0em;
  --button-font-size: clamp(1.05rem, 2vw, 1.2rem);
  --button-font-weight: 400;
  --button-line-height: 1.5;
  --button-letter-spacing: 0em;
  --list-font-size: clamp(1.5rem, 3vw, 2rem);
  --list-font-weight: 300;
  --list-line-height: 1.33;
  --list-letter-spacing: -0.005em;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
}

body {
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1 0 auto;
}

img {
  display: block !important;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Plus Jakarta Sans", sans-serif;
}

article {
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: transform var(--transition-slow);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--spacing5) 0;
}

h1 {
  font-weight: 700;
  font-size: clamp(2.5em, 5vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 550;
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-spacing: 0.01em;
  text-transform: lowercase;
}

h2::first-letter {
  text-transform: uppercase;
}

h3 {
  font-weight: 600;
  font-size: clamp(1.5em, 3vw, 2rem);
  line-height: 1.33;
  letter-spacing: -0.005em;
  margin: 0 0 var(--spacing4) 0;
  text-transform: lowercase;
}

h3::first-letter {
  text-transform: uppercase;
}

.subtitle {
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  line-height: 1.5;
  letter-spacing: 0em;
}

p,
li {
  font-weight: 350;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-spacing: 0.015em;
  padding: 0;
}

a {
  color: var(--color-dark);
  transition: background-color var(--transition-slow), color var(--transition-slow);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color-pink);
}

strong {
  font-weight: 500;
}

small {
  font-weight: 300;
}

em {
  font-weight: 400;
}

code,
kbd,
samp,
pre {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: inherit;
}

p > code,
li > code,
dd > code,
td > code,
h1 > code,
h2 > code,
h3 > code,
h4 > code {
  background: rgba(255, 182, 193, 0.2);
  color: var(--color-dark);
  word-wrap: break-word;
  box-decoration-break: clone;
  padding: 0.1rem 0.3rem 0.2rem;
  border-radius: 0.2rem;
  font-size: 0.9em;
  font-weight: 400;
}

pre {
  display: block;
  background: #1e1e1e;
  color: #d4d4d4;
  padding: var(--spacing4);
  border-radius: var(--radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--spacing4) 0;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

pre code {
  display: block;
  background: none;
  color: inherit;
  padding: 0;
  border-radius: 0;
  white-space: pre;
  overflow-x: auto;
  max-width: 100%;
  min-width: 100px;
  font-size: 0.9rem;
  word-wrap: normal;
  box-decoration-break: none;
}

kbd {
  background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
  color: var(--color-dark);
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
  font-size: 0.85em;
  font-weight: 500;
}

.u-text-center, .center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.u-show-desktop, .desktop {
  display: block;
}

@media (max-width: 960px) {
  .u-show-desktop, .desktop {
    display: none;
  }
}
.u-show-mobile, .mobile {
  display: none;
}

@media (max-width: 960px) {
  .u-show-mobile, .mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .u-hide-mobile {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .u-hide-tablet {
    display: none !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-glass {
  background-color: color-mix(in srgb, var(--color-grey-light) 12%, transparent);
  border: 0.5px solid var(--color-blue-mid);
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, white 10%, transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, white 90%, transparent), inset -2px -2px 0px -2px color-mix(in srgb, white 80%, transparent), inset -3px -8px 1px -6px color-mix(in srgb, white 60%, transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--color-dark) 12%, transparent), inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--color-dark) 6%, transparent), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.container {
  width: 95%;
  max-width: 1450px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, background 0.3s ease, backdrop-filter 0.3s ease;
}

.header-navbar.navbar--hidden {
  transform: translateY(-100%);
}

.header-navbar.navbar--scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-navbar.nav-hidden {
  transform: translateY(-100%);
}

.header-navbar.mobile-menu-open {
  background: var(--color-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-navbar.mobile-menu-open .nav-logo img {
  filter: brightness(0) invert(1);
}

.header-navbar.mobile-menu-open .mobile-menu-button svg {
  color: white;
}

.header-navbar.mobile-menu-open .mobile-menu-link {
  color: white;
}

.header-navbar.mobile-menu-open .mobile-menu-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-pink);
}

.nav-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing4) 0;
  margin: var(--spacing5) auto 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .nav-top-bar {
    margin: var(--spacing1) auto 0 auto;
    padding: var(--spacing3) 0;
  }
}
.nav-logo {
  max-width: 190px;
  display: block;
}

.nav-logo img {
  width: auto;
  height: clamp(1.6rem, 3.5vw, 2.2rem);
  opacity: 0.85;
  transition: opacity var(--transition-base), filter var(--transition-base);
  filter: brightness(0);
}

.nav-logo img:hover {
  opacity: 1;
}

.navbar--on-dark .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-desktop {
  display: none;
  gap: var(--spacing2);
  align-items: center;
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }
}
@media (min-width: 769px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-glass-container {
  display: flex;
  gap: 0.25rem;
  border-radius: 9999px;
  padding: 0.05rem;
  position: relative;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-glass-container {
    padding: 0.01rem;
  }
}
.nav-glass-container {
  background: linear-gradient(180deg, rgb(55, 55, 55) 0%, rgb(35, 35, 35) 40%, rgb(25, 25, 25) 100%);
  border: 1.5px solid rgba(80, 80, 80, 0.6);
  outline: 1px solid rgba(0, 0, 0, 0.8);
  outline-offset: 0px;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), inset 0 0 20px 0 rgba(255, 255, 255, 0.03);
}

.nav-glass-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 75% 35% at center bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
  border-radius: 9999px;
}

.nav-glass-container--dark {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 32.69%), linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0) 35%), linear-gradient(180deg, color(display-p3 0 0 0 / 0) 50%, color(display-p3 0 0 0 / 0) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0.05) 0%, color(display-p3 0 0 0 / 0.05) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0) 100%), color(display-p3 0 0 0 / 0);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
  display: flex;
  gap: 0.15rem;
  border-radius: 9999px;
  padding: 0.05rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.05rem);
  font-weight: 400;
  padding: 12px 0 12px 18px;
  border-radius: 9999px;
  transition: color var(--transition-base);
  position: relative;
  z-index: 1;
}

.nav-link:hover {
  color: var(--color-pink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing3);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  font-size: clamp(0.7rem, 2vw, 1.05rem);
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border-radius: 60px;
  margin-left: 1rem;
  background: linear-gradient(180deg, rgb(55, 55, 55) 0%, rgb(35, 35, 35) 40%, rgb(25, 25, 25) 100%);
  border: 1.5px solid rgba(80, 80, 80, 0.6);
  outline: 1px solid rgba(0, 0, 0, 0.8);
  outline-offset: 0px;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), inset 0 0 20px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.nav-cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 75% 35% at center bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
  border-radius: 60px;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.12), inset 0 0 20px 0 rgba(255, 255, 255, 0.05);
}

.nav-cta:hover::before {
  background: radial-gradient(ellipse 75% 40% at center bottom, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.14) 25%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
}

.nav-cta:active {
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .nav-cta {
    padding: 8px 16px;
    font-size: 1rem;
  }
}
.mobile-menu-button {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}

@media (min-width: 769px) {
  .mobile-menu-button {
    display: none;
  }
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.mobile-menu-open .hamburger-line {
  background-color: white;
}

.mobile-menu-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 400px;
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu-content {
  padding: var(--spacing2);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.mobile-menu-link {
  display: block;
  border-radius: var(--radius-sm);
  padding: var(--spacing2) 0.75rem;
  font-size: 1.2rem;
  color: var(--color-dark);
  text-decoration: none;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.mobile-menu-link:hover {
  background-color: rgba(15, 15, 15, 0.05);
  color: var(--color-pink);
}

.mobile-menu-cta {
  margin: 8px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing2);
  text-decoration: none;
  width: 100%;
  position: relative;
  font-size: 1.15rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
  word-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 60px;
  background: linear-gradient(180deg, rgb(55, 55, 55) 0%, rgb(35, 35, 35) 40%, rgb(25, 25, 25) 100%);
  border: 1.5px solid rgba(80, 80, 80, 0.6);
  outline: 1px solid rgba(0, 0, 0, 0.8);
  outline-offset: 0px;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), inset 0 0 20px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.mobile-menu-cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 75% 35% at center bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
  border-radius: 60px;
  transition: background 0.3s ease;
}

.mobile-menu-cta:hover {
  color: white;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.12), inset 0 0 20px 0 rgba(255, 255, 255, 0.05);
}

.mobile-menu-cta:hover::before {
  background: radial-gradient(ellipse 75% 40% at center bottom, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.14) 25%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
}

.mobile-menu-cta svg {
  width: 16px;
  height: 16px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}

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

@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none;
  }
}
.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: transparent;
  align-items: flex-start;
  padding-top: 24rem;
}

@media (max-width: 1090px) {
  .hero {
    padding-top: 18rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 14rem;
    min-height: 90vh;
    align-items: center;
  }
}
.hero--landing {
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  max-width: 100%;
  line-height: 1;
  text-shadow: none;
  color: var(--color-dark);
}

.hero-title--thankyou {
  margin-top: var(--spacing5);
}

.hero__subtext, .subtext {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  max-width: 45rem;
  line-height: 1.5;
  margin: 0 0 var(--spacing5) 0;
  word-spacing: 0.05rem;
  font-weight: 350;
  color: var(--color-dark);
  text-shadow: none;
}

.hero__subtext--landing {
  max-width: 500px;
}

@media (max-width: 960px) {
  .hero__subtext, .subtext {
    font-size: 1.15rem;
    margin: 0 0 15rem 0;
    max-width: 42rem;
  }
}
@media (max-width: 768px) {
  .hero__subtext, .subtext {
    font-size: 1.15rem;
    margin: 0 0 5.5rem 0;
  }
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 768px) {
  .hero-cta-group {
    gap: var(--spacing3);
    margin-bottom: 12rem;
  }
}
@media (max-width: 768px) {
  .hero-cta {
    margin-bottom: 0;
  }
}
.hero-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--color-dark);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.hero-learn-more svg {
  width: 1em;
  height: 1em;
  transform: translateY(2px);
  transition: transform 0.2s ease;
}

.hero-learn-more:hover {
  gap: 0.75rem;
}

.hero-learn-more:hover svg {
  transform: translateY(2px) translateX(2px);
}

@media (max-width: 768px) {
  .hero-learn-more {
    display: none;
  }
}
.landing .hero-title {
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 550;
  max-width: 37rem;
}

.landing .hero__subtext, .landing .subtext {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 35rem;
  margin: 0 0 56px 0;
}

.landing .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing6);
  align-items: center;
}

@media (max-width: 960px) {
  .landing .hero-content {
    grid-template-columns: 1fr;
  }
}
.landing .hero-content__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.terminal-card {
  width: 100%;
  max-width: 550px;
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace !important;
  padding: 0;
}

.terminal-card * {
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace !important;
}

@media (max-width: 960px) {
  .terminal-card {
    max-width: 100%;
  }
}
.terminal-card__buttons {
  display: flex;
  gap: 0.5rem;
  padding: 0.9rem;
}

.terminal-card__button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-card__button--close {
  background: rgba(255, 95, 86, 0.8);
}

.terminal-card__button--minimize {
  background: rgba(255, 189, 46, 0.8);
}

.terminal-card__button--maximize {
  background: rgba(40, 201, 64, 0.8);
}

.terminal-card--linux {
  background: var(--color-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.terminal-card--linux .terminal-card__buttons {
  display: none;
}

.terminal-card--linux .terminal-card__titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-card--linux .terminal-card__titlebar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-card--linux .terminal-card__icon {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.terminal-card--linux .terminal-card__title {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.terminal-card--linux .terminal-card__titlebar-buttons {
  display: flex;
  gap: 0.25rem;
}

.terminal-card--linux .terminal-card__titlebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.15s ease;
}

.terminal-card--linux .terminal-card__titlebar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.terminal-card--linux .terminal-card__titlebar-btn--close:hover {
  background: rgba(255, 95, 86, 0.9);
  color: white;
}

.terminal-card__content {
  padding: var(--spacing4);
  min-height: 200px;
}

.terminal-line {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.terminal-command,
.terminal-prompt {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.terminal-output {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

.terminal-output--success {
  color: rgba(40, 201, 64, 0.9);
  font-weight: 400;
}

.terminal-output--error {
  color: rgba(255, 95, 86, 0.9);
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: rgba(255, 255, 255, 0.8);
  animation: terminal-blink 1s infinite;
}

@keyframes terminal-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: scroll-indicator-fade-in 0.6s ease 1.5s forwards;
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero-scroll-indicator {
    display: none;
  }
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-dark);
  opacity: 0.2;
  animation: scroll-dot-pulse 1.5s ease-in-out infinite;
}

.scroll-dot:nth-child(1) {
  animation-delay: 0s;
}

.scroll-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.scroll-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes scroll-indicator-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scroll-dot-pulse {
  0%, 100% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(2px);
  }
}
.site-footer {
  position: relative;
  padding: 0;
  z-index: 1;
  background: var(--color-dark);
}

.footer-glass-container {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--spacing6) 0 var(--spacing4) 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer-glass-container {
    border-radius: var(--radius-md);
    padding: var(--spacing5) 0;
  }
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing5);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing7);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: var(--spacing5);
  }
}
.footer-brand {
  flex: 1;
  max-width: 450px;
}

@media (max-width: 768px) {
  .footer-brand {
    max-width: 100%;
  }
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--spacing4);
}

.footer-logo img {
  height: 35px;
  width: auto;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover img {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-logo img {
    height: 32px;
  }
}
.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 var(--spacing4) 0;
}

@media (max-width: 768px) {
  .footer-description {
    display: none;
  }
}
.footer-description--mobile {
  display: none;
}

@media (max-width: 768px) {
  .footer-description--mobile {
    display: block;
    font-size: 0.9rem;
    margin: var(--spacing3) 0;
  }
}
.footer-links {
  display: flex;
  gap: var(--spacing7);
}

@media (max-width: 768px) {
  .footer-links {
    gap: var(--spacing5);
    width: 100%;
  }
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing3);
  min-width: 140px;
}

.footer-column-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--spacing2) 0;
}

@media (max-width: 768px) {
  .footer-column-title {
    font-size: 0.8rem;
  }
}
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-pink);
}

@media (max-width: 768px) {
  .footer-link {
    font-size: 0.95rem;
  }
}
.footer-social {
  display: flex;
  gap: var(--spacing2);
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all var(--transition-fast);
}

.footer-social-link img,
.footer-social-link svg {
  height: 20px;
  width: 20px;
  transition: all var(--transition-fast);
}

.footer-social-link img {
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-social-link:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing3);
    align-items: flex-start;
  }
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-copyright {
    font-size: 0.85rem;
  }
}
.footer-glass {
  position: relative;
  padding: 0;
  z-index: 1;
}

.footer-glass__glass-container {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--spacing6) 0 var(--spacing5) 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer-glass__glass-container {
    border-radius: var(--radius-md);
    padding: var(--spacing4) 0;
  }
}
.footer-glass__container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing5);
}

.footer-glass__content {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing7);
}

@media (max-width: 768px) {
  .footer-glass__content {
    flex-direction: column;
    gap: var(--spacing5);
  }
}
.footer-glass__brand {
  flex: 1;
  max-width: 450px;
}

@media (max-width: 768px) {
  .footer-glass__brand {
    max-width: 100%;
  }
}
.footer-glass__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--spacing4);
}

.footer-glass__logo img {
  height: 35px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-glass__logo:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-glass__logo img {
    height: 32px;
  }
}
.footer-glass__description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 var(--spacing4) 0;
}

@media (max-width: 768px) {
  .footer-glass__description {
    font-size: 0.9rem;
  }
}
.footer-glass__links {
  display: flex;
  gap: var(--spacing7);
}

@media (max-width: 768px) {
  .footer-glass__links {
    gap: var(--spacing5);
    width: 100%;
  }
}
.footer-glass__column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing3);
  min-width: 140px;
}

.footer-glass__column-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--spacing2) 0;
}

@media (max-width: 768px) {
  .footer-glass__column-title {
    font-size: 0.8rem;
  }
}
.footer-glass__link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.footer-glass__link:hover {
  color: var(--color-pink);
}

@media (max-width: 768px) {
  .footer-glass__link {
    font-size: 0.95rem;
  }
}
.footer-glass__social {
  display: flex;
  gap: var(--spacing2);
  align-items: center;
}

.footer-glass__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all var(--transition-fast);
}

.footer-glass__social-link img,
.footer-glass__social-link svg {
  height: 20px;
  width: 20px;
  transition: all var(--transition-fast);
}

.footer-glass__social-link img {
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-glass__social-link:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

.footer-glass__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-glass__bottom {
    flex-direction: column;
    gap: var(--spacing3);
    align-items: flex-start;
  }
}
.footer-glass__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-glass__copyright {
    font-size: 0.85rem;
  }
}
.footer-glass__legal {
  display: flex;
  gap: var(--spacing4);
  align-items: center;
}

.footer-glass__legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-glass__legal-link:hover {
  color: var(--color-pink);
}

@media (max-width: 768px) {
  .footer-glass__legal-link {
    font-size: 0.85rem;
  }
}
.btn, .btn--secondary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing2);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: none;
  font-size: clamp(1rem, 2vw, 1.05rem);
  font-weight: 500;
  color: var(--color-dark);
  padding: 16px 24px;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
}

@media (max-width: 960px) {
  .btn, .btn--secondary, .btn-secondary {
    padding: 1rem 1.5rem;
  }
}
.btn--hero {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing3);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 60px;
  background: linear-gradient(180deg, rgb(55, 55, 55) 0%, rgb(35, 35, 35) 40%, rgb(25, 25, 25) 100%);
  border: 1.5px solid rgba(80, 80, 80, 0.6);
  outline: 1px solid rgba(0, 0, 0, 0.8);
  outline-offset: 0px;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), inset 0 0 20px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.btn--hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 75% 35% at center bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
  border-radius: 60px;
  transition: background 0.3s ease;
}

.btn--hero:hover {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.12), inset 0 0 20px 0 rgba(255, 255, 255, 0.05);
}

.btn--hero:hover::before {
  background: radial-gradient(ellipse 75% 40% at center bottom, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.14) 25%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
}

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

@media (max-width: 960px) {
  .btn--hero {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .btn--hero {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
.btn__arrow,
.arrow {
  display: inline-block;
  margin-left: var(--spacing1);
  transition: transform var(--transition-slow);
}

@property --primary {
  syntax: "<color>";
  initial-value: color-mix(in oklch, var(--secondary) 20%, oklch(100% 0 0deg / 0));
  inherits: true;
}
@property --main-color {
  syntax: "<color>";
  initial-value: oklch(100% 0 0deg);
  inherits: true;
}
@property --complementary-color {
  syntax: "<color>";
  initial-value: oklch(0% 0 0deg);
  inherits: true;
}
@property --secondary {
  syntax: "<color>";
  initial-value: oklch(54% 0 0deg);
  inherits: true;
}
@property --material-color {
  syntax: "<color>";
  initial-value: oklch(80% 2.16 203.9deg);
  inherits: true;
}
@property --inner-color {
  syntax: "<color>";
  initial-value: oklch(0.89 0.03 var(5.42));
  inherits: true;
}
@property --f_b {
  syntax: "<number>";
  initial-value: 1;
  inherits: true;
}
@property --f_c {
  syntax: "<number>";
  initial-value: 1;
  inherits: true;
}
@property --hue {
  syntax: "<number>";
  initial-value: 5;
  inherits: true;
}
.soft-btn {
  position: relative;
  width: min(300px, 65vi);
  padding: 0.5ch 1ch;
  display: flex;
  justify-content: center;
  font: 400 1.5em system-ui;
  color: oklch(from var(--inner-color) calc(l + 0.1) c calc(h + 180));
  text-decoration: none;
  --radius: calc(1px / 0);
  border-radius: var(--radius);
  background: radial-gradient(ellipse farthest-side, oklch(from var(--inner-color) calc(l - 0.2) calc(c + 0.2) h/0.5), var(--inner-color) 95%) border-box;
  box-shadow: inset 0px 0px 3px 10px oklch(100% 0 0deg / 0.07), inset 0px -2px 0px 1px color-mix(in oklch, var(--primaryr) 10%, oklch(100% 0 0deg));
  backdrop-filter: blur(4px);
  --primary: color-mix(in oklch, var(--main-color) 10%, oklch(1 0 0 / 1));
  filter: brightness(var(--f_b)) contrast(var(--f_c)) drop-shadow(0px 3px 2px oklch(from var(--inner-color) calc(l - 0.1) c h/0.2));
  transition: --f_b 0.5s, --f_c 0.5s ease;
}

.soft-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px 2px 2.2px;
  border: 1px solid oklch(from var(--complementary-color) calc(l - 0.2) c h);
  background: linear-gradient(var(--complementary-color), var(--primary), var(--primary), var(--complementary-color));
  mix-blend-mode: overlay;
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: 0.35s ease;
}

.soft-btn .__txt {
  padding: 0.8rem;
}

.soft-btn:hover, .soft-btn:active {
  --f_b: 0.8;
  --f_c: 2;
}

@starting-style {
  .soft-btn:hover, .soft-btn:active {
    --f_b: 1;
    --f_c: 1;
  }
}
@media (any-pointer: fine) {
  .soft-btn:focus-visible {
    --f_b: 0.8;
    --f_c: 2;
  }
  @starting-style {
    .soft-btn:focus-visible {
      --f_b: 1;
      --f_c: 1;
    }
  }
}
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing2);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: none;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: var(--color-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  background: color(display-p3 1 1 1 / 0.2);
}

@media (max-width: 768px) {
  .btn-glass {
    padding: 0.85rem 2rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
  }
}
.btn-glass--dark {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing2);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: hsl(0, 0%, 90%);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 32.69%), linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0) 35%), linear-gradient(180deg, color(display-p3 0 0 0 / 0) 50%, color(display-p3 0 0 0 / 0) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0.05) 0%, color(display-p3 0 0 0 / 0.05) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0) 100%), color(display-p3 0 0 0 / 0);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-glass--dark:hover {
  background: rgba(255, 255, 255, 0.02);
  background: color(display-p3 1 1 1 / 0.02);
}

@media (max-width: 768px) {
  .btn-glass--dark {
    padding: 0.85rem 2rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
  }
}
.cards-glass-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing6);
  width: 100%;
  justify-content: center;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
  padding: var(--spacing5);
  border-radius: 24px;
}

@media (max-width: 960px) {
  .cards-glass-grid {
    gap: var(--spacing5);
    padding: var(--spacing4);
  }
}
@media (max-width: 768px) {
  .cards-glass-grid {
    gap: var(--spacing4);
    flex-direction: column;
    padding: var(--spacing4);
  }
}
.card-glass {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: var(--spacing5);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
}

@media (max-width: 768px) {
  .card-glass {
    padding: var(--spacing4);
  }
}
.card-glass__title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0 0 var(--spacing3) 0;
  text-align: left;
}

@media (max-width: 768px) {
  .card-glass__title {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    margin-bottom: var(--spacing2);
  }
}
.card-glass__description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-grey-dark);
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .card-glass__description {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
  }
}
.card-glass--third {
  flex: 1 1 calc((100% - var(--spacing6) * 2) / 3);
  min-width: 280px;
}

@media (max-width: 960px) {
  .card-glass--third {
    flex: 1 1 calc((100% - var(--spacing5)) / 2);
  }
}
@media (max-width: 768px) {
  .card-glass--third {
    flex: 1 1 100%;
    min-width: 0;
  }
}
.card-glass--half {
  flex: 1 1 calc((100% - var(--spacing6)) / 2);
  min-width: 320px;
}

@media (max-width: 960px) {
  .card-glass--half {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .card-glass--half {
    flex: 1 1 100%;
    min-width: 0;
  }
}
.card-glass--full {
  flex: 1 1 100%;
}

.card-glass--dark {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 32.69%), linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0) 35%), linear-gradient(180deg, color(display-p3 0 0 0 / 0) 50%, color(display-p3 0 0 0 / 0) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0.05) 0%, color(display-p3 0 0 0 / 0.05) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0) 100%), color(display-p3 0 0 0 / 0);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: var(--spacing5);
  border-radius: 20px;
  border-bottom: 4px solid rgba(153, 153, 153, 0);
  border-bottom: 4px solid color(display-p3 0.6 0.6 0.6 / 0);
  mix-blend-mode: plus-lighter;
}

.card-glass--dark .card-glass__title,
.card-glass--dark h3 {
  color: hsl(0, 0%, 90%);
}

.card-glass--dark .card-glass__description,
.card-glass--dark p {
  color: hsl(0, 0%, 90%);
}

@media (max-width: 768px) {
  .card-glass--dark {
    padding: var(--spacing4);
  }
}
.code-block {
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: var(--spacing1);
  border-radius: 8px;
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace !important;
}

.code-block * {
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace !important;
}

.code-block .card-glass__title,
.code-block h3 {
  color: hsl(0, 0%, 90%);
}

.code-block .card-glass__description,
.code-block p {
  color: hsl(0, 0%, 90%);
}

.waitlist-form {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: var(--spacing3);
}

.email-form {
  width: 100%;
  max-width: 400px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing3);
  max-width: 600px;
  width: 100%;
}

.email-input {
  flex: 1;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding: 1rem 1.5rem;
  border: none;
  color: var(--color-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
}

.email-input:hover, .email-input:focus {
  outline: none;
}

.email-input::placeholder {
  color: rgba(15, 15, 15, 0.5);
}

.info-block {
  margin: 19rem auto 1.3rem auto;
  font-size: 1.1rem;
  text-transform: uppercase;
  max-width: 19rem;
  text-align: center;
  background: rgba(232, 246, 253, 0.7);
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px 20px rgba(232, 246, 253, 0.8);
}

@media (max-width: 1090px) {
  .info-block {
    margin: 15rem auto 1.3rem auto;
  }
}
@media (max-width: 960px) {
  .info-block {
    margin: 10rem auto 1.3rem auto;
    font-size: 1rem;
    max-width: 18rem;
  }
}
.spaced-text {
  display: inline-block;
  margin-right: 1.25rem;
}

.waitlist-note {
  text-align: center;
}

.waitlist-note p {
  font-size: 1.1rem;
  margin-top: 1.2rem;
}

@media (max-width: 960px) {
  .waitlist-note p {
    font-size: 1rem;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .waitlist-note p {
    font-size: 0.95rem;
    margin: 0;
  }
}
.pill {
  padding: var(--spacing1) var(--spacing3);
  margin: 0 0 var(--spacing4) 0;
  border-radius: var(--radius-full);
  color: var(--color-dark);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.8rem;
  text-transform: uppercase;
  width: fit-content;
  background-color: color-mix(in srgb, var(--color-grey-light) 12%, transparent);
  border: 0.5px solid var(--color-blue-mid);
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, white 10%, transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, white 90%, transparent), inset -2px -2px 0px -2px color-mix(in srgb, white 80%, transparent), inset -3px -8px 1px -6px color-mix(in srgb, white 60%, transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--color-dark) 12%, transparent), inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--color-dark) 6%, transparent), 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .pill {
    font-size: 0.7rem;
  }
}
.pill--gradient {
  background: radial-gradient(ellipse at center, rgba(230, 244, 255, 0.2) 20%, rgba(199, 232, 255, 0.9) 90%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  background: radial-gradient(ellipse at center, rgba(230, 244, 255, 0.2) 20%, rgba(199, 232, 255, 0.9) 90%);
  border: 1px solid rgba(218, 147, 255, 0.1);
}

.badge {
  display: inline-flex;
  text-align: center;
  background-color: color-mix(in srgb, var(--color-grey-light) 12%, transparent);
  border: 0.5px solid var(--color-blue-mid);
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, white 10%, transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, white 90%, transparent), inset -2px -2px 0px -2px color-mix(in srgb, white 80%, transparent), inset -3px -8px 1px -6px color-mix(in srgb, white 60%, transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--color-dark) 12%, transparent), inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--color-dark) 6%, transparent), 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--color-dark);
  border-radius: var(--radius-full);
  padding: 0.3rem 1rem 0.3rem 1rem;
  transition: all var(--transition-base);
  margin: 0 0 var(--spacing4) 0;
}

.badge span {
  font-size: clamp(0.5rem, 2vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-dark);
}

.badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  background-color: color-mix(in srgb, var(--color-grey-light) 12%, transparent);
  border: 0.5px solid var(--color-blue-mid);
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, white 10%, transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, white 90%, transparent), inset -2px -2px 0px -2px color-mix(in srgb, white 80%, transparent), inset -3px -8px 1px -6px color-mix(in srgb, white 60%, transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--color-dark) 12%, transparent), inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--color-dark) 6%, transparent), 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--color-dark);
  border-radius: var(--radius-full);
  padding: 0.7rem 2.3rem 0.8rem 2.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: var(--spacing4);
  transition: all var(--transition-base);
}

.badge-btn span {
  color: rgb(248, 250, 252);
}

.badge-btn:hover {
  color: var(--color-pink);
}

.badge-btn:hover span {
  color: var(--color-pink);
}

@media (max-width: 960px) {
  .badge-btn {
    padding: 0.7rem 1.5rem 0.8rem 1.5rem;
  }
}
.border-gradient {
  position: relative;
}

.border-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.carousel-title {
  text-transform: none;
  word-spacing: 0.1rem;
  font-size: clamp(0.85rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 var(--spacing4) 0;
}

@media (max-width: 768px) {
  .carousel-title {
    font-size: 1rem;
    margin: 0 auto var(--spacing4) auto;
    max-width: 16rem;
  }
}
.logo-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--spacing3) 0;
}

.logo-section::before, .logo-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 5rem);
  animation: scroll 95s linear infinite;
  width: max-content;
}

.logo-slider img {
  height: clamp(22px, 2vw, 28px);
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .logo-section {
    padding: var(--spacing3) 0;
  }
  .logo-section::before, .logo-section::after {
    width: 80px;
  }
  .logo-slider {
    gap: clamp(2rem, 4vw, 3rem);
    animation-duration: 45s;
  }
  .logo-slider img {
    height: clamp(18px, 2vw, 24px);
  }
}
.mid-tall-section {
  padding: var(--spacing6) var(--spacing4);
  border-top: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
}

@media (max-width: 960px) {
  .mid-tall-section {
    padding: var(--spacing5) var(--spacing3);
  }
}
@media (max-width: 768px) {
  .mid-tall-section {
    padding: var(--spacing4) var(--spacing2);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn ease 1.1s forwards;
}

.waves-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

a-waves {
  --x: -0.5rem;
  --y: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a-waves:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: #1a1a1a;
  border-radius: 50%;
  transform: translate3d(calc(var(--x) - 50%), calc(var(--y) - 50%), 0);
  will-change: transform;
  content: "";
  opacity: 0.5;
  pointer-events: auto;
}

a-waves svg {
  display: block;
  width: 100%;
  height: 100%;
}

a-waves svg path {
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 1px;
  opacity: 0.5;
}

.cube_wrapper {
  transform: rotateX(-30deg) translateX(-50%) translateZ(0);
  margin: 5rem auto;
  left: 50%;
  position: relative;
  transform-style: preserve-3d;
  min-height: 300px;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

@media (max-width: 768px) {
  .cube_wrapper {
    min-height: 200px;
    margin: 4rem auto;
  }
}
.hero-cube {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: rotateX(-30deg) translateY(-50%) translateZ(0);
  margin: 0;
  left: auto;
  min-height: 300px;
}

@media (max-width: 960px) {
  .hero-cube {
    right: 2%;
    top: 60%;
  }
}
@media (max-width: 768px) {
  .hero-cube {
    position: relative;
    right: auto;
    top: auto;
    transform: rotateX(-30deg) translateX(-50%) translateZ(0);
    left: 50%;
    margin: 4rem auto;
    min-height: 200px;
  }
}
.hero-cube .cube_face {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
  color: transparent;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

.dark-cube {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: rotateX(-30deg) translateZ(0);
  min-height: 180px;
  margin: 3rem auto;
}

@media (max-width: 768px) {
  .dark-cube {
    order: 1;
    left: 50%;
    transform: rotateX(-30deg) translateX(-50%) translateZ(0);
    min-height: 120px;
    margin: 2rem auto;
  }
}
.dark-cube .cube {
  height: 150px;
  width: 150px;
  animation: none;
}

@media (max-width: 768px) {
  .dark-cube .cube {
    height: 100px;
    width: 100px;
  }
}
.dark-cube .cube_face {
  height: 150px;
  width: 150px;
}

@media (max-width: 768px) {
  .dark-cube .cube_face {
    height: 100px;
    width: 100px;
  }
}
.dark-cube .cube .cube_face:nth-child(1) {
  transform: rotateX(90deg) rotateY(0deg) translateZ(75px);
}

@media (max-width: 768px) {
  .dark-cube .cube .cube_face:nth-child(1) {
    transform: rotateX(90deg) rotateY(0deg) translateZ(50px);
  }
}
.dark-cube .cube .cube_face:nth-child(2) {
  transform: rotateX(0deg) rotateY(0deg) translateZ(75px);
}

@media (max-width: 768px) {
  .dark-cube .cube .cube_face:nth-child(2) {
    transform: rotateX(0deg) rotateY(0deg) translateZ(50px);
  }
}
.dark-cube .cube .cube_face:nth-child(3) {
  transform: rotateX(0deg) rotateY(90deg) translateZ(75px);
}

@media (max-width: 768px) {
  .dark-cube .cube .cube_face:nth-child(3) {
    transform: rotateX(0deg) rotateY(90deg) translateZ(50px);
  }
}
.dark-cube .cube .cube_face:nth-child(4) {
  transform: rotateX(0deg) rotateY(180deg) rotateZ(180deg) translateZ(75px);
}

@media (max-width: 768px) {
  .dark-cube .cube .cube_face:nth-child(4) {
    transform: rotateX(0deg) rotateY(180deg) rotateZ(180deg) translateZ(50px);
  }
}
.dark-cube .cube .cube_face:nth-child(5) {
  transform: rotateX(0deg) rotateY(270deg) rotateZ(180deg) translateZ(75px);
}

@media (max-width: 768px) {
  .dark-cube .cube .cube_face:nth-child(5) {
    transform: rotateX(0deg) rotateY(270deg) rotateZ(180deg) translateZ(50px);
  }
}
.dark-cube .cube .cube_face:nth-child(6) {
  transform: rotateX(-90deg) rotateY(0deg) translateZ(75px);
}

@media (max-width: 768px) {
  .dark-cube .cube .cube_face:nth-child(6) {
    transform: rotateX(-90deg) rotateY(0deg) translateZ(50px);
  }
}
.cube {
  transition: all 0.3s ease;
  height: 300px;
  width: 300px;
  transform: rotateY(-45deg) translateZ(0);
  transform-style: preserve-3d;
  animation: cube_rotate 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .cube {
    height: 200px;
    width: 200px;
  }
}
.cube_face {
  color: #00ff26;
  background: rgb(20, 20, 20);
  border: solid 1px #404040;
  position: absolute;
  transform-style: preserve-3d;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: 300px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Geist Mono", monospace;
  font-size: clamp(1rem, 8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  padding: 1rem;
  will-change: transform;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 768px) {
  .cube_face {
    height: 200px;
    width: 200px;
    font-size: clamp(0.85rem, 6vw, 1.2rem);
    padding: 0.75rem;
  }
}
.cube .cube_face:nth-child(1) {
  transform: rotateX(90deg) rotateY(0deg) translateZ(150px);
  filter: brightness(90%);
  font-size: 9rem;
}

@media (max-width: 768px) {
  .cube .cube_face:nth-child(1) {
    transform: rotateX(90deg) rotateY(0deg) translateZ(100px);
    font-size: 6rem;
  }
}
.cube .cube_face:nth-child(2) {
  transform: rotateX(0deg) rotateY(0deg) translateZ(150px);
  filter: brightness(80%);
  font-size: 9rem;
}

@media (max-width: 768px) {
  .cube .cube_face:nth-child(2) {
    transform: rotateX(0deg) rotateY(0deg) translateZ(100px);
    font-size: 6rem;
  }
}
.cube .cube_face:nth-child(3) {
  transform: rotateX(0deg) rotateY(90deg) translateZ(150px);
  filter: brightness(70%);
  font-size: 9rem;
}

@media (max-width: 768px) {
  .cube .cube_face:nth-child(3) {
    transform: rotateX(0deg) rotateY(90deg) translateZ(100px);
    font-size: 6rem;
  }
}
.cube .cube_face:nth-child(4) {
  transform: rotateX(0deg) rotateY(180deg) rotateZ(180deg) translateZ(150px);
  filter: brightness(80%);
  font-size: 9rem;
}

@media (max-width: 768px) {
  .cube .cube_face:nth-child(4) {
    transform: rotateX(0deg) rotateY(180deg) rotateZ(180deg) translateZ(100px);
    font-size: 6rem;
  }
}
.cube .cube_face:nth-child(5) {
  transform: rotateX(0deg) rotateY(270deg) rotateZ(180deg) translateZ(150px);
  filter: brightness(70%);
  font-size: 9rem;
}

@media (max-width: 768px) {
  .cube .cube_face:nth-child(5) {
    transform: rotateX(0deg) rotateY(270deg) rotateZ(180deg) translateZ(100px);
    font-size: 6rem;
  }
}
.cube .cube_face:nth-child(6) {
  transform: rotateX(-90deg) rotateY(0deg) translateZ(150px);
  filter: brightness(60%);
  font-size: 9rem;
}

@media (max-width: 768px) {
  .cube .cube_face:nth-child(6) {
    transform: rotateX(-90deg) rotateY(0deg) translateZ(100px);
    font-size: 6rem;
  }
}
@keyframes cube_rotate {
  0% {
    transform: rotateY(-45deg);
  }
  16.7% {
    transform: rotateY(-45deg) rotateX(-90deg);
  }
  33.3% {
    transform: rotateY(-45deg) rotateX(-90deg) rotateZ(90deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(-45deg) rotateX(-90deg) rotateZ(90deg) rotateX(-90deg);
  }
  66.7% {
    transform: rotateY(-45deg) rotateX(-90deg) rotateZ(90deg) rotateX(-90deg) rotateZ(90deg) rotateX(0deg);
  }
  83.3% {
    transform: rotateY(-45deg) rotateX(-90deg) rotateZ(90deg) rotateX(-90deg) rotateZ(90deg) rotateX(-90deg);
  }
  100% {
    transform: rotateY(-45deg) rotateX(-90deg) rotateZ(90deg) rotateX(-90deg) rotateZ(90deg) rotateX(-90deg) rotateZ(90deg);
  }
}
.cta-footer-wrapper {
  position: relative;
  background-image: url("/assets/imgs/cta.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.cta-footer-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}

.cta-section {
  position: relative;
  padding: var(--spacing8) 0;
  z-index: 1;
}

.cta-section .btn-glass {
  color: white;
}

@media (max-width: 768px) {
  .cta-section {
    padding: var(--spacing6) 0;
  }
}
.cta-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing7);
  min-height: 400px;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: var(--spacing5);
    min-height: auto;
  }
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

@media (max-width: 768px) {
  .cta-content {
    max-width: 100%;
  }
}
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: white;
  margin: 0 0 var(--spacing5) 0;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
}
.cta-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--spacing5) 0;
  max-width: 500px;
}

@media (max-width: 768px) {
  .cta-description {
    font-size: 1rem;
  }
}
.cta-visual {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

@media (max-width: 768px) {
  .cta-visual {
    display: none;
  }
}
.cta-glass-section {
  position: relative;
  padding: var(--spacing8) 0;
  z-index: 1;
}

.cta-glass-section .btn-glass {
  color: white;
}

@media (max-width: 768px) {
  .cta-glass-section {
    padding: var(--spacing6) 0;
  }
}
.cta-glass-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing7);
  min-height: 400px;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-glass-container {
    grid-template-columns: 1fr;
    gap: var(--spacing5);
    min-height: auto;
  }
}
.cta-glass-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

@media (max-width: 768px) {
  .cta-glass-content {
    max-width: 100%;
  }
}
.cta-glass-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: white;
  margin: 0 0 var(--spacing5) 0;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .cta-glass-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
}
.cta-glass-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--spacing5) 0;
  max-width: 500px;
}

@media (max-width: 768px) {
  .cta-glass-description {
    font-size: 1rem;
  }
}
.cta-glass-visual {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-glass-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

@media (max-width: 768px) {
  .cta-glass-visual {
    display: none;
  }
}
.cta-dark-section {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
}

.cta-dark-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  z-index: 1;
  height: 100vh;
}

@media (max-width: 768px) {
  .cta-dark-container {
    min-height: auto;
  }
}
.cta-dark-content {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cta-dark-content {
    max-width: 100%;
  }
}
.cta-dark-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 var(--spacing5) 0;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .cta-dark-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
}
.cta-dark-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-dark);
  line-height: 1.6;
  margin: 0 auto 56px auto;
  max-width: 55rem;
}

@media (max-width: 768px) {
  .cta-dark-description {
    font-size: 1rem;
  }
}
.cta-dark-visual {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-dark-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

@media (max-width: 768px) {
  .cta-dark-visual {
    display: none;
  }
}
.faq-section {
  padding: var(--spacing8) 0;
  background: white;
  border-top: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
}

.faq-section .container {
  max-width: 1450px;
}

.faq-main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0 0 100px 0;
  text-transform: none;
  letter-spacing: -0.02em;
  max-width: 40rem;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing6);
}

.faq-subsection {
  display: flex;
  gap: var(--spacing7);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .faq-subsection {
    flex-direction: column;
    gap: var(--spacing4);
  }
}
.faq-subsection-title {
  flex: 0 0 35%;
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0;
  padding-top: var(--spacing3);
}

@media (max-width: 768px) {
  .faq-subsection-title {
    flex: 1;
    padding-top: 0;
  }
}
.faq-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: var(--spacing3);
}

@media (max-width: 768px) {
  .faq-items {
    padding-top: 0;
  }
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing4);
  padding: var(--spacing4) 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question span {
  flex: 1;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark);
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-grey-dark);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-icon line {
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.is-active .faq-answer {
  max-height: 1000px;
  padding-bottom: var(--spacing5);
}

.faq-answer p {
  color: var(--color-grey-dark);
  margin: 0 0 var(--spacing3) 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  text-decoration: underline;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: var(--color-pink);
}

.landing-faq-section {
  padding: var(--spacing8) 0;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  border-top: 2px solid var(--color-dark);
}

@media (max-width: 768px) {
  .landing-faq-section {
    padding: var(--spacing6) 0;
  }
}
.landing-faq-section .container {
  max-width: 1450px;
}

.landing-faq-main-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0 0 72px 0;
  text-transform: none;
  letter-spacing: -0.02em;
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.landing-faq-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing6);
}

.landing-faq-subsection {
  display: flex;
  gap: var(--spacing7);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .landing-faq-subsection {
    flex-direction: column;
    gap: var(--spacing4);
  }
}
.landing-faq-subsection-title {
  flex: 0 0 35%;
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0;
  padding-top: var(--spacing3);
}

@media (max-width: 768px) {
  .landing-faq-subsection-title {
    flex: 1;
    padding-top: 0;
  }
}
.landing-faq-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: var(--spacing3);
  max-width: 53rem;
  margin: auto;
}

@media (max-width: 768px) {
  .landing-faq-items {
    padding-top: 0;
  }
}
.landing-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.landing-faq-item:last-child {
  border-bottom: none;
}

.landing-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing4);
  padding: var(--spacing4) 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.landing-faq-question span {
  flex: 1;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark);
}

.landing-faq-question:hover {
  opacity: 0.7;
}

.landing-faq-question:focus {
  outline: none;
}

.landing-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-grey-dark);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.landing-faq-icon line {
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-faq-item.is-active .landing-faq-icon {
  transform: rotate(45deg);
}

.landing-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.landing-faq-item.is-active .landing-faq-answer {
  max-height: 1000px;
  padding-bottom: var(--spacing5);
}

.landing-faq-answer p {
  color: var(--color-grey-dark);
  margin: 0 0 var(--spacing3) 0;
}

.landing-faq-answer p:last-child {
  margin-bottom: 0;
}

.landing-faq-answer a {
  text-decoration: underline;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.landing-faq-answer a:hover {
  color: var(--color-pink);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.preloader.visible {
  opacity: 1;
  pointer-events: all;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-spinner {
  font-size: 48px;
  color: #fff;
  font-family: monospace;
  line-height: 1;
}

body main {
  opacity: 1;
}

body .header-navbar {
  opacity: 1;
}

.landing-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-grey);
  max-width: 35rem;
  word-spacing: 0.015em;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-weight: 350;
  margin: 0 0 72px 0;
}

.landing-description--dark {
  color: var(--color-dark);
}

@media (max-width: 960px) {
  .landing-description {
    font-size: 1.1rem;
  }
}
@media (max-width: 960px) {
  .landing-description {
    max-width: 35rem;
    margin: 0 0 24px 0;
  }
}
.landing-label, .landing-use-cases-carousel__label {
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.landing-label--dark, .landing-use-cases-carousel__label {
  color: var(--color-grey);
}

@media (max-width: 768px) {
  .landing-label, .landing-use-cases-carousel__label {
    font-size: 0.85rem;
  }
}
.landing-two-col {
  display: flex;
  gap: var(--spacing6);
  align-items: center;
}

@media (max-width: 960px) {
  .landing-two-col {
    flex-direction: column;
    text-align: center;
  }
}
.landing-subtext {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  color: white;
  max-width: 800px;
  margin-top: 5rem;
  padding-left: clamp(2rem, 15vw, 20rem);
}

@media (max-width: 960px) {
  .landing-subtext {
    padding-left: clamp(1.5rem, 10vw, 12rem);
  }
}
@media (max-width: 768px) {
  .landing-subtext {
    padding-left: clamp(1rem, 5vw, 2rem);
  }
}
.landing-content-col, .solution-content__left,
.solution-content__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

.landing-content-col:has(.solution-cube), .solution-content__left:has(.solution-cube),
.solution-content__right:has(.solution-cube) {
  align-items: center;
  justify-content: center;
}

.landing-content-col:has(.terminal-card), .solution-content__left:has(.terminal-card),
.solution-content__right:has(.terminal-card) {
  align-items: center;
  justify-content: center;
}

.landing-section-title {
  color: var(--color-dark);
  font-size: clamp(3rem, 3vw, 5rem);
  font-weight: 500;
  margin-bottom: var(--spacing4);
  position: relative;
  z-index: 1;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.landing-section-subtext {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-dark);
  max-width: 45rem;
  line-height: 1.6;
  margin: 0 auto var(--spacing6) auto;
  text-align: center;
}

@media (max-width: 960px) {
  .landing-section-subtext {
    width: 100%;
    max-width: 45rem;
  }
}
.problem-section {
  height: 110vh;
  position: relative;
  background-color: var(--color-dark);
  overflow: hidden;
  align-content: center;
}

@media (max-width: 768px) {
  .problem-section {
    height: auto;
    padding: var(--spacing8) 0;
  }
}
.problem-section .container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  text-align: start;
  z-index: 1;
  width: 100%;
  max-width: 85% !important;
}

@media (max-width: 768px) {
  .problem-section .container {
    position: relative;
    height: auto;
    justify-content: flex-start;
    max-width: 90%;
  }
}
.problem-section__box-icon {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 0.2em;
  position: relative;
  width: 1.05em;
  height: 1.05em;
}

.problem-section__box-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
  display: block;
  transform: translateY(0.12em);
}

@media (max-width: 768px) {
  .problem-section__box-icon {
    width: 0.95em;
    height: 0.95em;
  }
}
.problem-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03rem;
  word-spacing: 0.2rem;
  color: white;
  margin: var(--spacing6) 0 var(--spacing5) 0;
}

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

@media (max-width: 960px) {
  .problem-title {
    font-size: clamp(2.5rem, 7vw, rem);
    line-height: 1.25;
    margin: 0 0 var(--spacing7) 0;
  }
}
@media (max-width: 768px) {
  .problem-title {
    font-size: clamp(2rem, 2vw, 4rem);
    line-height: 1.3;
    margin: 0 0 var(--spacing8) 0;
  }
  .problem-title:last-child {
    margin-bottom: 0;
  }
}
.problem-title__label {
  display: block;
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-indent: 0;
  margin-bottom: var(--spacing5);
}

@media (max-width: 768px) {
  .problem-title__label {
    font-size: 0.95rem;
    margin-bottom: var(--spacing5);
  }
}
.problem-title__label--mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .problem-title__label--mobile-only {
    display: block;
  }
}
.problem-title--muted {
  font-weight: 350;
  color: rgba(255, 255, 255, 0.45);
}

.statement-section {
  height: 500vh;
  position: relative;
  background-color: var(--color-dark);
  box-shadow: inset 0 8px 16px -8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.statement-section .statement-section__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .statement-section .statement-section__video {
    display: none;
  }
}
.statement-section .container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

.statement-section .container.pinned {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1450px;
}

@media (max-width: 960px) {
  .statement-section .container {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .statement-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .statement-section .container.pinned {
    width: 90%;
  }
}
.statement-heading--pt1 {
  font-size: clamp(4.5rem, 8vw, 5rem);
  font-weight: 450;
  line-height: 1.15;
  letter-spacing: 0.03rem;
  color: white;
  margin: 0;
  text-indent: clamp(10rem, 8vw, 20rem);
}

@media (max-width: 960px) {
  .statement-heading--pt1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    line-height: 1.25;
  }
}
@media (max-width: 768px) {
  .statement-heading--pt1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.3;
    order: 2;
  }
}
.statement-heading--pt2 {
  font-size: clamp(2.5rem, 8vw, 4.1rem);
  font-weight: 450;
  line-height: 1.15;
  letter-spacing: 0.03rem;
  color: white;
  margin: 0;
  text-indent: clamp(10rem, 8vw, 20rem);
}

@media (max-width: 960px) {
  .statement-heading--pt2 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    line-height: 1.25;
  }
}
@media (max-width: 768px) {
  .statement-heading--pt2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.3;
    order: 2;
  }
}
[data-scroll-text] {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  will-change: transform, opacity, filter;
}

@media (max-width: 768px) {
  [data-scroll-text] {
    grid-column: 1;
    grid-row: 2;
  }
}
[data-scroll-text=first] {
  position: relative;
}

[data-scroll-text=second] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  [data-scroll-text=second] {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}
.section-title {
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 600;
  text-align: center;
  margin: 0 auto var(--spacing5) auto;
  color: var(--color-dark);
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  text-align: center;
  margin: 0 0 var(--spacing6) 0;
  color: var(--color-grey-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solution-section {
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  position: relative;
}

.solution-section .container {
  display: flex;
  flex-direction: column;
  align-content: center;
}

.solution-section__label {
  display: block;
  text-align: center;
  margin-bottom: var(--spacing3);
  padding-top: var(--spacing6);
}

@media (max-width: 768px) {
  .solution-section__label {
    padding-top: 0;
  }
}
.solution-content {
  display: flex;
  flex-direction: column;
  align-content: center;
  height: 110vh;
}

@media (max-width: 960px) {
  .solution-content {
    flex-direction: column;
    height: auto;
    padding: var(--spacing7) 0;
  }
}
.solution-content__header {
  width: 100%;
  max-width: 1300px;
  text-align: center;
  justify-content: space-between;
  margin: 0 auto var(--spacing6) auto;
  padding: 0 var(--spacing4);
}

@media (max-width: 960px) {
  .solution-content__header {
    margin-bottom: var(--spacing5);
  }
}
.solution-content__columns {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 90px;
  padding: 0 var(--spacing4);
}

@media (max-width: 960px) {
  .solution-content__columns {
    flex-direction: column;
    gap: var(--spacing6);
    padding: 0;
  }
}
@media (max-width: 768px) {
  .solution-content__columns {
    gap: 124px;
  }
}
.solution-content__columns .solution-content__link {
  margin-top: auto;
  padding-top: var(--spacing4);
}

.first-solution {
  justify-content: center;
}

.second-solution {
  flex-direction: row;
  align-items: center;
  gap: var(--spacing6);
}

@media (max-width: 960px) {
  .second-solution {
    flex-direction: column;
    gap: var(--spacing4);
  }
}
.solution-content__label {
  margin-bottom: var(--spacing3);
}

.solution-content__headline {
  margin: 0 0 var(--spacing5) 0;
  max-width: 40rem;
}

@media (max-width: 768px) {
  .solution-content__headline {
    font-size: 2.3rem;
  }
}
.solution-content__headline--center {
  text-align: center;
  max-width: none;
  width: 100%;
}

h3.solution-content__headline {
  max-width: 26rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.275;
  font-weight: 550;
}

.solution-content__description {
  margin: 0 0 var(--spacing5) 0;
}

.solution-content__description p {
  margin: 0 0 10px 0;
  max-width: 30rem;
  color: var(--color-dark);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.solution-content__description p:last-child {
  margin-bottom: 0;
}

.solution-content__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: var(--spacing2);
}

.solution-content__link svg {
  width: 1em;
  height: 1em;
  transform: translateY(2px);
  transition: transform 0.2s ease;
}

.solution-content__link:hover {
  color: var(--color-pink);
}

.solution-content__link:hover svg {
  transform: translateY(2px) translateX(4px);
}

.solution-content__link--light {
  color: white;
}

.solution-content__link--light:hover {
  color: var(--color-pink);
}

.solution-cube {
  position: relative;
  transform: rotateX(-30deg) translateZ(0);
  margin: 0;
  left: auto;
  min-height: 280px;
}

@media (max-width: 960px) {
  .solution-cube {
    margin: var(--spacing5) auto;
  }
}
@media (max-width: 768px) {
  .solution-cube {
    min-height: 200px;
    margin: var(--spacing4) auto;
    transform: rotateX(-30deg) translateX(-50%) translateZ(0);
    left: 50%;
  }
}
.solution-cube .cube {
  height: 250px;
  width: 250px;
}

@media (max-width: 768px) {
  .solution-cube .cube {
    height: 180px;
    width: 180px;
  }
}
.solution-cube .cube_face {
  height: 250px;
  width: 250px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-base);
  color: transparent;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

@media (max-width: 768px) {
  .solution-cube .cube_face {
    height: 180px;
    width: 180px;
  }
}
.solution-cube .cube .cube_face:nth-child(1) {
  transform: rotateX(90deg) rotateY(0deg) translateZ(125px);
}

@media (max-width: 768px) {
  .solution-cube .cube .cube_face:nth-child(1) {
    transform: rotateX(90deg) rotateY(0deg) translateZ(90px);
  }
}
.solution-cube .cube .cube_face:nth-child(2) {
  transform: rotateX(0deg) rotateY(0deg) translateZ(125px);
}

@media (max-width: 768px) {
  .solution-cube .cube .cube_face:nth-child(2) {
    transform: rotateX(0deg) rotateY(0deg) translateZ(90px);
  }
}
.solution-cube .cube .cube_face:nth-child(3) {
  transform: rotateX(0deg) rotateY(90deg) translateZ(125px);
}

@media (max-width: 768px) {
  .solution-cube .cube .cube_face:nth-child(3) {
    transform: rotateX(0deg) rotateY(90deg) translateZ(90px);
  }
}
.solution-cube .cube .cube_face:nth-child(4) {
  transform: rotateX(0deg) rotateY(180deg) rotateZ(180deg) translateZ(125px);
}

@media (max-width: 768px) {
  .solution-cube .cube .cube_face:nth-child(4) {
    transform: rotateX(0deg) rotateY(180deg) rotateZ(180deg) translateZ(90px);
  }
}
.solution-cube .cube .cube_face:nth-child(5) {
  transform: rotateX(0deg) rotateY(270deg) rotateZ(180deg) translateZ(125px);
}

@media (max-width: 768px) {
  .solution-cube .cube .cube_face:nth-child(5) {
    transform: rotateX(0deg) rotateY(270deg) rotateZ(180deg) translateZ(90px);
  }
}
.solution-cube .cube .cube_face:nth-child(6) {
  transform: rotateX(-90deg) rotateY(0deg) translateZ(125px);
}

@media (max-width: 768px) {
  .solution-cube .cube .cube_face:nth-child(6) {
    transform: rotateX(-90deg) rotateY(0deg) translateZ(90px);
  }
}
.features-section {
  min-height: 100vh;
  padding: var(--spacing7) 0;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  position: relative;
  display: flex;
  align-items: center;
}

.features-section .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing6);
  width: 100%;
  justify-content: center;
}

@media (max-width: 960px) {
  .features-grid {
    gap: var(--spacing5);
  }
}
@media (max-width: 768px) {
  .features-grid {
    gap: var(--spacing4);
    flex-direction: column;
  }
}
.feature-item {
  flex: 1 1 calc((100% - 3 * var(--spacing6)) / 4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

@media (max-width: 960px) {
  .feature-item {
    flex: 0 1 calc((100% - var(--spacing5)) / 2);
    min-width: 240px;
  }
}
@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 100%;
    min-width: 0;
  }
}
.feature-item__icon {
  display: flex;
  width: 100px;
  height: 100px;
  padding: 28px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-bottom: var(--spacing5);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 32.69%), linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), rgba(240, 240, 240, 0.25);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
  background-blend-mode: plus-lighter, plus-lighter, normal, color-burn, overlay;
  box-shadow: 16px 16px 9px -18px #fff inset, -12px -12px 6px -14px #e0e0e0 inset, 2px 2px 1px -2px #e0e0e0 inset, 0 0 22px 0 rgba(242, 242, 242, 0.5) inset;
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset;
  backdrop-filter: blur(5px);
}

.feature-item__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.85;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.feature-item__icon svg path,
.feature-item__icon svg circle,
.feature-item__icon svg rect,
.feature-item__icon svg line {
  stroke: var(--color-dark);
  fill: none;
  opacity: 0.9;
}

.feature-item__title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-dark);
  margin: 0 0 var(--spacing3) 0;
  line-height: 1.3;
}

.feature-item__description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 350;
  color: var(--color-grey);
  margin: 0;
  line-height: 1.4;
  width: 100%;
  max-width: 14rem;
}

.building-blocks-section {
  min-height: 100vh;
  padding: var(--spacing7) 0;
  background: url("/assets/imgs/grainy-waves.jpeg") center/150% no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.building-blocks-section .container {
  position: relative;
  z-index: 1;
}

.how-section {
  padding: var(--spacing8) 0;
  background: white;
}

.how-section .container {
  position: relative;
  z-index: 1;
}

.how-section .container {
  max-width: 1100px;
}

.how-subsection {
  display: flex;
  gap: var(--spacing4);
  background: white;
  border-radius: var(--radius-lg);
  padding: 0;
  margin-top: var(--spacing6);
  border: none;
  box-shadow: inset 0 1px 1px hsla(0, 0%, 0%, 0.05), 1px 2px 2px hsla(340, 0%, 62%, 0.1), 2px 4px 4px hsla(340, 0%, 62%, 0.1), 4px 8px 8px hsla(340, 0%, 62%, 0.1), 8px 16px 16px hsla(340, 0%, 62%, 0.1), 16px 32px 32px hsla(340, 0%, 62%, 0.1);
}

.how-subsection__left {
  flex: 1 1 50%;
  border-radius: var(--radius-lg);
  min-height: 400px;
}

.how-subsection__left--frosted {
  position: relative;
  background: url("/assets/imgs/frosted.jpeg") center/cover no-repeat;
}

.how-subsection__left--image {
  position: relative;
  background: url("/assets/imgs/enclaves.jpeg") center/cover no-repeat;
  filter: brightness(0.95);
}

.how-subsection__left--attestation {
  position: relative;
  background: url("/assets/imgs/attestation.jpeg") center/cover no-repeat;
  overflow: hidden;
}

.attestation-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attestation-triangle {
  position: absolute;
  width: 280px;
  height: 240px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.08));
}

.attestation-triangle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
  pointer-events: none;
}

.attestation-triangle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.attestation-scanner {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 55%;
  height: 4px;
  background: linear-gradient(3deg, transparent 0%, rgba(139, 92, 246, 0.5) 20%, rgba(167, 139, 250, 0.9) 50%, rgba(139, 92, 246, 0.5) 80%, transparent 100%);
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.6), 0 0 40px rgba(139, 92, 246, 0.4), 0 0 60px rgba(167, 139, 250, 0.2);
  animation: scannerMove 15s ease-in infinite;
  filter: blur(1px);
  transform: translate(-5%, -50%);
}

@keyframes scannerMove {
  0%, 100% {
    top: 10%;
    opacity: 0.7;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
}
.how-subsection__right {
  flex: 1 1 50%;
  padding: var(--spacing6) var(--spacing6) var(--spacing5) var(--spacing5);
}

.how-subsection__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-grey-med);
  display: block;
  margin-bottom: var(--spacing2);
}

.how-subsection__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.how-subsection__description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-grey);
}

.enclave-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-content__right .enclave-sphere {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  min-height: 300px;
}

.enclave-sphere__outer {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sphereFloat 4s ease-in-out infinite;
}

.enclave-sphere__inner {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: rgba(84, 148, 70, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(84, 148, 70, 0.03);
  box-shadow: 0px 0px 5px rgba(84, 148, 70, 0.7), inset 0 0 40px rgba(84, 148, 70, 0.7);
  animation: innerSphereFloat 4s ease-in-out 0.5s infinite;
}

@keyframes sphereFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes innerSphereFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}
.stacked-tiles {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.stacked-tiles__tile {
  position: absolute;
  width: 55%;
  height: 57%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(13px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.stacked-tiles__tile:nth-child(1) {
  opacity: 0.9;
  z-index: 1;
  animation: stackedTileFloat1 3s ease-in-out infinite;
}

.stacked-tiles__tile:nth-child(2) {
  opacity: 0.9;
  z-index: 2;
  animation: stackedTileFloat2 3s ease-in-out 0.3s infinite;
}

.stacked-tiles__tile:nth-child(3) {
  opacity: 0.95;
  z-index: 3;
  animation: stackedTileFloat3 3s ease-in-out 0.6s infinite;
}

@keyframes stackedTileFloat1 {
  0%, 100% {
    transform: translateZ(0px) translateY(-40px) translateX(-40px);
  }
  50% {
    transform: translateZ(20px) translateY(-48px) translateX(-40px);
  }
}
@keyframes stackedTileFloat2 {
  0%, 100% {
    transform: translateZ(0px) translateY(0px) translateX(0px);
  }
  50% {
    transform: translateZ(20px) translateY(-8px) translateX(0px);
  }
}
@keyframes stackedTileFloat3 {
  0%, 100% {
    transform: translateZ(0px) translateY(40px) translateX(40px);
  }
  50% {
    transform: translateZ(20px) translateY(32px) translateX(40px);
  }
}
.tee-support {
  padding: var(--spacing8) 0;
  background: var(--color-dark);
}

.tee-support__content {
  gap: 148px;
}

@media (max-width: 960px) {
  .tee-support__content {
    align-items: flex-start;
    gap: 64px;
  }
}
.tee-support__left {
  flex: 0 0 40%;
  text-align: left !important;
}

.tee-support__right {
  flex: 0 0 60%;
}

.tee-support__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  color: white;
  margin: 0 0 var(--spacing4) 0;
}

.tee-support__text {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-grey-light);
  margin: 0 0 32px 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .tee-support__text {
    margin: 0 0 8px 0;
  }
}
.tee-support__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .tee-support__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing2);
  }
}
.tee-support__logo-placeholder {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.tee-support__logo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.tee-support__logo:first-child {
  box-shadow: 0 0 25px rgba(100, 180, 255, 0.45);
}

.tee-support__logo--dimmed {
  filter: brightness(0.3);
}

.open-source-section {
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  text-align: center;
  height: 100vh;
  align-content: center;
}

.open-source-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.open-source-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0 0 var(--spacing5) 0;
}

.open-source-title s {
  color: var(--color-grey);
}

.open-source-title {
  letter-spacing: -0.02em;
}

.open-source-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-dark);
  max-width: 42rem;
  line-height: 1.6;
  margin: 0 0 56px 0;
}

.open-source-callout {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-dark);
  max-width: 40rem;
  line-height: 1.6;
  margin: 0 0 var(--spacing5) 0;
}

.open-source-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing5);
  margin-top: var(--spacing4);
}

.open-source-actions .solution-content__link {
  font-size: clamp(1rem, 2vw, 1.15rem);
}

@media (max-width: 768px) {
  .open-source-actions {
    gap: var(--spacing4);
  }
}
.blog-cta {
  padding: var(--spacing6) 0;
  background: var(--color-dark);
}

@media (max-width: 960px) {
  .blog-cta {
    padding: var(--spacing6) 0;
  }
}
@media (max-width: 768px) {
  .blog-cta {
    padding: var(--spacing6) 0;
  }
}
@media (max-width: 960px) {
  .blog-cta__content {
    flex-direction: column;
    gap: var(--spacing5);
  }
}
.blog-cta__left {
  flex: 0 0 40%;
  display: flex;
  align-items: start;
  justify-content: start;
  position: relative;
}

@media (max-width: 960px) {
  .blog-cta__left {
    flex: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.blog-cta__left::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px 30px var(--color-dark), inset 0 50px 60px -20px var(--color-dark), inset 50px 0 60px -20px var(--color-dark), inset -50px 0 60px -20px var(--color-dark);
  pointer-events: none;
}

@media (max-width: 768px) {
  .blog-cta__left::after {
    box-shadow: inset 0 0 40px 20px var(--color-dark), inset 0 30px 40px -15px var(--color-dark), inset 30px 0 40px -15px var(--color-dark), inset -30px 0 40px -15px var(--color-dark);
  }
}
.blog-cta__right {
  flex: 1 1 60%;
  min-width: 0;
  text-align: left;
}

.blog-cta__image {
  max-width: 100%;
  height: auto;
}

.blog-cta__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  color: white;
  margin: 0 0 var(--spacing4) 0;
  max-width: 40rem;
}

.blog-cta__text {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-grey-mid);
  margin: 0 0 var(--spacing5) 0;
}

@media (max-width: 960px) {
  .blog-cta__text {
    max-width: 35rem;
  }
}
.blog-cta .solution-content__link {
  color: white;
  margin-top: var(--spacing4);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
}

@media (max-width: 960px) {
  .blog-cta .solution-content__link {
    justify-content: center;
  }
}
.blog-cta .solution-content__link svg {
  width: 1.1em;
  height: 1.1em;
}

.blog-cta .solution-content__link:hover {
  color: var(--color-pink);
}

.blog-cta__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing5);
}

.blog-cta__logo-placeholder {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.blog-cta__logo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.blog-cta__logo:first-child {
  box-shadow: 0 0 25px rgba(100, 180, 255, 0.45);
}

.blog-cta__logo--dimmed {
  filter: brightness(0.4);
}

.how-it-works {
  padding: 6rem 0 0 0;
  background: var(--color-light, #fff);
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 6rem 0;
  }
}
.how-it-works .container {
  align-content: center;
  max-width: 1650px;
}

.how-it-works .section-title {
  margin: var(--spacing6) auto var(--spacing5) auto;
}

@media (max-width: 768px) {
  .how-it-works .section-title {
    margin: 0 auto var(--spacing4) auto;
  }
}
.how-it-works .section-subtext {
  text-align: center;
  max-width: 55rem;
  margin: 0 auto 4rem auto;
}

@media (max-width: 768px) {
  .how-it-works .section-subtext {
    margin: 0;
  }
}
.how-it-works__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto;
  border-top: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

@media (max-width: 1090px) {
  .how-it-works__cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 768px) {
  .how-it-works__cards {
    border: none;
  }
}
.how-it-works__card {
  background: #fff;
  border: none;
  border-right: 2px solid var(--color-dark);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.how-it-works__card:nth-child(1) {
  padding: 72px 60px 100px 0;
}

@media (max-width: 960px) {
  .how-it-works__card:nth-child(1) {
    padding: 72px 30px 100px 0;
  }
}
.how-it-works__card:nth-child(2) {
  padding: 72px 60px 100px 60px;
}

@media (max-width: 960px) {
  .how-it-works__card:nth-child(2) {
    padding: 72px 30px 100px 30px;
  }
}
.how-it-works__card:nth-child(3) {
  padding: 72px 0 100px 60px;
  border-right: none;
}

@media (max-width: 960px) {
  .how-it-works__card:nth-child(3) {
    padding: 72px 0 100px 30px;
  }
}
@media (max-width: 1090px) {
  .how-it-works__card {
    border-right: none;
    border-bottom: 2px solid var(--color-dark);
    padding: 72px 0 72px 0 !important;
    display: flex;
    flex-direction: column;
  }
  .how-it-works__card:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .how-it-works__card {
    border: none;
    border-bottom: 2px solid var(--color-dark);
    padding: 42px 0 72px 0 !important;
  }
  .how-it-works__card:last-child {
    border-bottom: none;
  }
}
.how-it-works__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-dark);
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1;
  margin: 0.5rem 0 2rem 0;
  padding: 0 0 2px 0;
}

.how-it-works__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark, #1a1a1a);
}

.how-it-works__description {
  color: rgba(1, 1, 1, 0.6);
  margin-bottom: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
}

.how-it-works__description code {
  background: var(--color-grey-light);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.how-it-works .terminal-card {
  align-self: start;
}

.how-it-works__image-placeholder {
  min-height: 200px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  font-weight: 600;
}

.hero__carousel {
  width: 100%;
  background: var(--color-dark);
}

.hero__carousel .mid-tall-section {
  padding: var(--spacing4) 0 var(--spacing2) 0;
  min-height: auto;
  height: auto;
  border-top: none;
  border-bottom: none;
}

.video-explainer {
  background: var(--color-dark);
  height: 100vh;
  align-content: center;
  padding: var(--spacing6) 0;
}

@media (max-width: 960px) {
  .video-explainer {
    height: auto;
    padding: var(--spacing6) 0;
  }
}
@media (max-width: 768px) {
  .video-explainer {
    padding: var(--spacing5) 0;
  }
}
.video-explainer__container {
  display: flex;
  gap: var(--spacing6);
  align-items: center;
}

@media (max-width: 960px) {
  .video-explainer__container {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing5);
  }
}
@media (max-width: 768px) {
  .video-explainer__container {
    gap: var(--spacing4);
  }
}
.video-explainer__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .video-explainer__text {
    align-items: center;
  }
}
.video-explainer__text .landing-description {
  margin: 0 0 20px 0;
  color: var(--color-grey-mid);
}

.video-explainer__title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  color: white;
  margin-top: var(--spacing5);
}

.video-explainer__video {
  flex: 1.2;
}

@media (max-width: 960px) {
  .video-explainer__video {
    width: 100%;
    max-width: 600px;
  }
}
.video-explainer__player {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-grey-dark);
}

@media (max-width: 960px) {
  .video-explainer__player {
    border: 4px solid var(--color-blue-light);
  }
}
.video-explainer__placeholder {
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.video-explainer__placeholder:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.video-explainer__placeholder svg {
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
}

.video-explainer__placeholder:hover svg {
  color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.video-explainer__caption {
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 12px 0 0 12px;
  margin: 0;
}

@media (max-width: 960px) {
  .video-explainer__caption {
    text-align: center;
    padding: 12px 0 0 0;
  }
}
@media (max-width: 768px) {
  .video-explainer__caption {
    max-width: 13rem;
    margin: 0 auto 20px auto;
    line-height: 1.175;
  }
}
.video-explainer__caption a {
  color: inherit;
  font-weight: 450;
}

.video-explainer__caption a:hover {
  color: var(--color-pink);
}

@media (max-width: 960px) {
  .video-explainer__cta--desktop {
    display: none;
  }
}
.video-explainer__cta--mobile {
  display: none;
}

@media (max-width: 960px) {
  .video-explainer__cta--mobile {
    display: inline-flex;
    align-self: center;
  }
}
.landing-use-cases-section {
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  overflow: visible;
}

@media (max-width: 768px) {
  .landing-use-cases-section {
    overflow: hidden;
  }
}
.landing-use-cases-section .container {
  max-width: 1450px;
  height: 110vh;
  align-content: center;
  overflow: visible;
}

@media (max-width: 768px) {
  .landing-use-cases-section .container {
    height: auto;
    padding-top: var(--spacing6);
    padding-bottom: var(--spacing6);
  }
}
.landing-use-cases-section .landing-label, .landing-use-cases-section .landing-use-cases-carousel__label {
  display: block;
  text-align: center;
  margin: 0 auto var(--spacing3) auto;
}

.landing-use-cases-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0 auto 0 clamp(0rem, 18vw, 23rem) !important;
  letter-spacing: -0.02em;
  max-width: 65rem;
  text-align: start;
  text-transform: none !important;
  display: block;
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .landing-use-cases-title {
    font-size: clamp(2.7rem, 2vw, 3rem);
    margin: var(--spacing5) auto var(--spacing4) auto !important;
    white-space: normal;
    text-align: center;
  }
}
.landing-use-cases-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-dark);
  margin: var(--spacing5) auto 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .landing-use-cases-description {
    text-align: center;
    margin: 0 auto;
  }
}
.landing-use-cases-title__static {
  display: inline;
  text-transform: none !important;
}

.landing-use-cases-title__badge {
  display: inline-block;
  min-width: auto;
  text-align: left;
  line-height: 1;
  background: var(--color-dark);
  color: white;
  padding: 0.1em 0.3em 0.2em 0.3em;
  border-radius: 4px;
}

#use-cases-dynamic-title {
  text-transform: none !important;
}

#use-cases-dynamic-title::first-letter {
  text-transform: none !important;
}

h1.landing-use-cases-title {
  text-transform: none !important;
}

h1.landing-use-cases-title::first-letter {
  text-transform: none !important;
}

h1.landing-use-cases-title span,
h1.landing-use-cases-title .landing-use-cases-title__badge,
h1.landing-use-cases-title #use-cases-dynamic-title {
  text-transform: none !important;
}

.landing-use-cases-carousel-wrapper {
  margin-top: var(--spacing6);
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.landing-use-cases-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.landing-use-cases-carousel::-webkit-scrollbar {
  display: none;
}

.landing-use-cases-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.landing-use-cases-carousel__arrow:hover {
  opacity: 1;
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.landing-use-cases-carousel__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.landing-use-cases-carousel__arrow svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-dark);
  stroke-width: 1.15;
  fill: none;
}

.landing-use-cases-carousel__arrow--left {
  left: calc(50vw - 675px - 96px);
}

.landing-use-cases-carousel__arrow--left svg {
  margin-right: 2px;
}

.landing-use-cases-carousel__arrow--right {
  right: calc(50vw - 675px - 96px);
}

.landing-use-cases-carousel__arrow--right svg {
  margin-left: 2px;
}

@media (max-width: 960px) {
  .landing-use-cases-carousel__arrow--left {
    left: calc(50vw - 350px - 96px);
  }
  .landing-use-cases-carousel__arrow--right {
    right: calc(50vw - 350px - 96px);
  }
}
@media (max-width: 768px) {
  .landing-use-cases-carousel__arrow {
    width: 48px;
    height: 48px;
  }
  .landing-use-cases-carousel__arrow svg {
    width: 28px;
    height: 28px;
  }
  .landing-use-cases-carousel__arrow--left {
    left: calc(10vw - 40px);
  }
  .landing-use-cases-carousel__arrow--right {
    right: calc(10vw - 40px);
  }
}
.landing-use-cases-carousel__track {
  display: flex;
  gap: var(--spacing4);
  width: max-content;
  padding: var(--spacing4) 0;
}

@media (max-width: 768px) {
  .landing-use-cases-carousel__track {
    gap: var(--spacing1);
    padding: 0;
  }
}
.landing-use-cases-carousel__card {
  flex: 0 0 1000px;
  min-width: 1000px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  scroll-snap-align: center;
  transform: scale(0.9);
  opacity: 0.4;
  transition: transform 0.4s ease, opacity 0.4s ease;
  min-width: 1350px;
}

.landing-use-cases-carousel__card.in-focus {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 960px) {
  .landing-use-cases-carousel__card {
    flex: 0 0 700px;
    min-width: 700px;
  }
}
@media (max-width: 768px) {
  .landing-use-cases-carousel__card {
    flex: 0 0 80vw;
    min-width: 80vw;
    grid-template-columns: 1fr;
  }
}
.landing-use-cases-carousel__problem, .landing-use-cases-carousel__solution {
  overflow: hidden;
  filter: blur(3px);
  transition: filter 0.4s ease;
}

.landing-use-cases-carousel__card.in-focus .landing-use-cases-carousel__problem, .landing-use-cases-carousel__card.in-focus .landing-use-cases-carousel__solution {
  filter: blur(0);
}

.landing-use-cases-carousel__problem {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

@media (max-width: 768px) {
  .landing-use-cases-carousel__problem {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}
.landing-use-cases-carousel__solution {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

@media (max-width: 768px) {
  .landing-use-cases-carousel__solution {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}
.landing-use-cases-carousel__problem, .landing-use-cases-carousel__solution {
  display: flex;
  flex-direction: column;
  gap: var(--spacing3);
  align-items: flex-start;
  padding: 96px;
}

@media (max-width: 960px) {
  .landing-use-cases-carousel__problem, .landing-use-cases-carousel__solution {
    padding: var(--spacing5);
  }
}
@media (max-width: 768px) {
  .landing-use-cases-carousel__problem, .landing-use-cases-carousel__solution {
    padding: var(--spacing5);
  }
}
.landing-use-cases-carousel__problem p, .landing-use-cases-carousel__solution p {
  font-size: clamp(1.175rem, 2vw, 1.35rem);
  margin: 0;
  text-align: start;
}

.landing-use-cases-carousel__problem {
  background: var(--color-grey-light);
}

.landing-use-cases-carousel__problem p {
  color: var(--color-grey-dark);
}

.landing-use-cases-carousel__problem .landing-use-cases-carousel__label {
  color: var(--color-grey);
}

.landing-use-cases-carousel__solution p {
  color: var(--color-dark);
  font-weight: 350;
}

.landing-use-cases-carousel__label {
  display: block;
  width: 100%;
  font-size: 1rem;
  margin-bottom: var(--spacing4);
  text-align: left !important;
}

.blog {
  margin: auto;
  max-width: 750px;
  margin-top: 120px;
}

.blog hr {
  margin: 80px 0px;
}

.posts {
  margin-top: 12rem;
  margin-bottom: 24rem;
}

@media (max-width: 960px) {
  .posts {
    margin-top: 15rem;
  }
}
.post {
  max-width: 750px;
  margin: 12rem auto 10rem auto;
}

.post p,
.post li,
.post ul,
.post ol {
  font-weight: 300;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-grey-dark);
  letter-spacing: -0.0125rem;
  word-spacing: 0.1rem;
}

.post h2 {
  margin: 3.5rem 0 var(--spacing-lg) 0;
}

.post img {
  max-width: 100%;
}

.post a {
  text-decoration: underline;
}

.post a:hover {
  color: var(--color-pink);
}

#lp-post-img {
  max-width: 100%;
}

.entry {
  font-size: 1.2rem;
}

.blog h1 {
  font-size: clamp(2rem, 2.5vw, 2.3rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.0125rem;
  word-spacing: 0.1rem;
}

.blog h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  margin: 72px 0 36px 0;
  line-height: 1.25;
  text-transform: none !important;
}

.blog h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  margin: 56px 0 24px 0;
  line-height: 1.25;
  text-transform: none !important;
}

.blog h4 {
  font-size: clamp(1.18rem, 2vw, 1.25rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.0125rem;
  word-spacing: 0.1rem;
}

.blog h5 {
  font-size: 1.2rem;
  font-weight: 500;
}

.blog-details {
  display: flex;
  flex-direction: left;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-details-date {
  background: var(--color-dark);
  color: white;
  border-radius: 5px;
  padding: 2px 10px 3px 10px;
  font-weight: 500;
}

.blog-details-read-time {
  padding: 2px 10px;
  margin-left: 15px;
  color: var(--color-pink);
  font-weight: 500;
}

.blog-link {
  display: block;
  margin-bottom: 6rem;
}

.blog-link:hover .arrow {
  transform: translateX(5px);
}

.blog-excerpt--mobile {
  display: none;
}

@media (max-width: 960px) {
  .blog-excerpt--desktop {
    display: none;
  }
  .blog-excerpt--mobile {
    display: block;
  }
}
body:has(.blog) {
  background-attachment: fixed;
  background-size: 100% 100vh;
}

@media (min-width: 769px) {
  body:has(.blog) .header-navbar.navbar--scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.post ul,
.post ol {
  padding-left: 2.5rem;
}

.post ol {
  list-style: none;
  counter-reset: item;
}

.post ol > li {
  counter-increment: item;
}

.post ol > li::before {
  content: counter(item) ".";
  font-weight: 400;
  margin-right: 0.5rem;
  margin-left: -2rem;
  display: inline-block;
  width: 1.5rem;
  text-align: right;
}

.post li {
  margin-bottom: 0.25rem;
  padding-left: 0.95rem;
}

.post table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  overflow-x: auto;
  display: block;
  -webkit-overflow-scrolling: touch;
}

.post table th,
.post table td {
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  border-bottom: 1px solid var(--color-grey-light);
}

.post table th {
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
}

.post table td {
  font-weight: 350;
  line-height: 1.5;
}

.post table td:first-child,
.post table th:first-child {
  white-space: nowrap;
  min-width: 220px;
}

@media (max-width: 960px) {
  .post table {
    font-size: 0.85rem;
    position: relative;
  }
  .post table th,
  .post table td {
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: none;
  }
  .post table td:first-child,
  .post table th:first-child {
    min-width: 120px;
    white-space: normal;
    padding-left: var(--spacing-md);
  }
  .post table td:last-child,
  .post table th:last-child {
    padding-right: var(--spacing-md);
  }
  .post table th {
    white-space: normal;
  }
}
.post pre {
  position: relative;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: var(--spacing4);
  padding-top: calc(var(--spacing4) + 2.25rem);
  margin: 1.5rem 0;
  overflow-x: auto;
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
}

.post pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.25rem;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.post pre::after {
  content: "— ▢ ✕";
  position: absolute;
  top: 0.45rem;
  right: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.75rem;
}

.post pre code {
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: inherit;
  display: block;
  line-height: 1.7;
}

.post pre .c,
.post pre .c1,
.post pre .cm,
.post pre .cs {
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
}

.post code {
  background: var(--color-grey-light);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace;
  font-size: 0.9em;
}

@media (max-width: 960px) {
  .post pre code {
    font-size: clamp(0.95rem, 2vw, 1rem);
  }
}
.post .callout {
  border-top: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  border-left: 8px solid var(--color-grey-dark);
  border-right: 1px solid var(--color-grey);
  padding: 1.75rem 2rem 1.75rem 2.5rem;
  margin: 3rem 0;
  background: var(--color-grey-light);
}

.post .callout h2 {
  margin: 0 !important;
}

.post .callout p {
  margin: 0.75rem 0;
}

.post .callout .section-label {
  text-align: left;
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
}

.post .callout ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.post .callout > ul > li {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  font-weight: 350;
  line-height: 1.45;
  margin: 0.5rem 0;
  position: relative;
}

.post .callout > ul > li::before {
  content: "▶";
  position: absolute;
  left: -1rem;
  font-size: 0.7em;
  top: 0.35em;
}

.post .callout ul ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.post .callout ul ul li {
  position: relative;
  margin: 0.25rem 0;
}

.post .callout ul ul li::before {
  content: "▷";
  position: absolute;
  left: -1.4rem;
  font-size: 0.75em;
  top: 0.3em;
}

@media (max-width: 960px) {
  .post .callout {
    margin: 3rem 0;
    padding: 0.95rem;
  }
}
.post .section-label {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 4.5rem 0 1.5rem 0;
}

.post .section-note {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 450;
  line-height: 1.5;
  border-top: 4px solid var(--color-dark);
  border-bottom: 4px solid var(--color-dark);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.post #markdown-toc {
  list-style: decimal;
  counter-reset: none;
  color: var(--color-grey-dark);
  font-weight: 350;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.post #markdown-toc li {
  padding-left: 0.5em;
  font-weight: 400;
}

.post #markdown-toc li::before {
  content: none;
}

.post #markdown-toc a {
  text-decoration: underline;
  line-height: 2;
  font-weight: 400;
  color: inherit;
}

.post #markdown-toc a:hover {
  color: var(--color-pink);
}

.post .tooltip {
  position: relative;
  border-bottom: 2px dotted var(--color-pink);
  cursor: help;
  font-weight: 400;
}

.post .tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
  max-width: 500px;
  white-space: normal;
  text-align: start;
  width: max-content;
  text-wrap: balance;
  font-weight: 400;
}

.post .tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

.ds-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  background-color: #0f0f0f;
  padding: 40px;
  overflow-y: auto;
  z-index: 1000;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.ds-sidebar::-webkit-scrollbar {
  width: 6px;
}

.ds-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.ds-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.ds-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ds-sidebar__logo {
  margin-bottom: 3rem;
}

.ds-sidebar__logo a {
  display: block;
  transition: opacity var(--transition-base);
}

.ds-sidebar__logo a:hover {
  opacity: 0.8;
}

.ds-sidebar__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.ds-nav__group {
  margin-bottom: var(--spacing5);
}

.ds-nav__group-title {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-grey);
  margin-bottom: var(--spacing3);
}

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

.ds-nav__item {
  margin-bottom: var(--spacing2);
}

.ds-nav__link {
  display: block;
  color: var(--color-grey-light);
  text-decoration: none;
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding: var(--spacing1) 0;
  transition: color var(--transition-base);
}

.ds-nav__link:hover, .ds-nav__link:focus {
  color: var(--color-pink);
}

.ds-main {
  margin-left: 230px;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
}

.ds-main .container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 0 var(--spacing4);
}

.ds-hero {
  padding: var(--spacing5) 0;
}

.ds-hero__title {
  font-size: clamp(2.5em, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.ds-hero__subtitle {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  color: var(--color-grey);
  max-width: 800px;
}

.ds-section {
  margin-bottom: var(--spacing7);
  padding-bottom: var(--spacing6);
  border-bottom: 1px solid var(--color-grey-light);
}

.ds-section:last-child {
  border-bottom: none;
}

.ds-section__title {
  font-size: clamp(2em, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: var(--spacing5);
  color: var(--color-dark);
}

.ds-section__subtitle {
  font-size: clamp(1.5em, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.005em;
  margin-top: var(--spacing5);
  margin-bottom: var(--spacing5);
  color: var(--color-dark);
  text-transform: lowercase;
}

.ds-section__subtitle::first-letter {
  text-transform: uppercase;
}

.ds-component-demo {
  background: transparent;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing4);
  align-items: center;
  justify-content: flex-start;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.ds-code {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: var(--spacing4);
  border-radius: var(--radius-md);
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 0.9rem;
  overflow-x: auto;
  margin-bottom: var(--spacing5);
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ds-color-swatch {
  text-align: left;
}

.ds-color-swatch__color {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.ds-color-swatch__name {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.ds-color-swatch__value {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  color: var(--color-grey);
}

.ds-typography-sample {
  margin-bottom: var(--spacing5);
  padding: var(--spacing2);
  border-left: 3px solid var(--color-pink);
  background: var(--color-blue-base);
}

.ds-typo-intro {
  display: flex;
  align-items: center;
  gap: var(--spacing5);
  margin-bottom: var(--spacing6);
}

@media (max-width: 768px) {
  .ds-typo-intro {
    flex-direction: column;
    gap: var(--spacing4);
    align-items: flex-start;
  }
}
.ds-typo-specimen {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-blue-mid);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .ds-typo-specimen {
    width: 150px;
    height: 150px;
  }
}
.ds-typo-specimen__large {
  font-size: clamp(3.5rem, 5vw, 6.25rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1;
}

.ds-typo-description {
  flex: 1;
  margin: 0;
}

.ds-spacing-demo {
  background: var(--color-pink);
  display: inline-block;
  color: white;
  padding: var(--spacing3);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

.ds-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--spacing5);
}

.ds-table th,
.ds-table td {
  text-align: left;
  border-bottom: 1px solid var(--color-grey-light);
}

.ds-table th {
  font-weight: 500;
  background: var(--color-blue-base);
}

.ds-table code {
  background: var(--color-grey-light);
  padding: var(--spacing1) var(--spacing1);
  border-radius: 3px;
  font-family: "Geist Mono", monospace;
  font-size: 0.85rem;
}

.ds-footer {
  margin-left: 230px;
  background-color: var(--color-dark);
  padding: var(--spacing5) 0;
  margin-top: var(--spacing7);
}

@media (max-width: 768px) {
  .ds-footer {
    margin-left: 0;
  }
}
.ds-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing3);
}

.ds-footer__text {
  font-size: 1rem;
  color: var(--color-grey-med);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ds-footer__text {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .ds-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    padding: var(--spacing4);
  }
  .ds-main {
    margin-left: 0;
  }
  .ds-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing2);
  }
}
.about-page-body {
  background: var(--color-dark);
}

.about-hero-section {
  padding: var(--spacing) 0 var(--spacing5) 0;
  display: flex;
  align-items: center;
  height: 60vh;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  border-bottom: 2px solid var(--color-dark);
}

.about-hero-section .container {
  max-width: 1300px;
}

@media (max-width: 768px) {
  .about-hero-section {
    height: 50vh;
  }
}
.about-hero-title,
.about-hero-subtitle {
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  font-weight: 550;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0 auto;
  letter-spacing: -0.02em;
  max-width: 50rem;
  text-align: center;
}

.about-hero-subtitle {
  opacity: 0.3;
  font-size: clamp(3.2rem, 6vw, 4.2rem);
  filter: blur(2px);
  margin-bottom: var(--spacing3);
}

.about-hero-title {
  margin: var(--spacing6) auto var(--spacing5) auto;
}

.about-hero-description {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  color: var(--color-dark);
  max-width: 45rem;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

.about-sections-wrapper {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .about-sections-wrapper .team-section {
    order: -1;
  }
}
.about-section {
  padding: var(--spacing6) 0;
  display: flex;
  align-items: center;
  background: white;
}

.about-section .container {
  max-width: 1450px;
}

@media (max-width: 768px) {
  .about-section {
    padding: var(--spacing6) 0;
  }
}
.about-section-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 450;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 var(--spacing4) 0;
  letter-spacing: -0.02em;
}

.about-section-subheading {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-grey-dark);
  margin: 0;
}

.about-caution-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .about-caution-content {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.about-caution-left {
  flex: 0 0 35%;
}

@media (max-width: 768px) {
  .about-caution-left {
    flex: 1;
  }
}
.about-caution-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing4);
  width: 95%;
  max-width: 40rem;
}

.about-caution-paragraph {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-grey-dark);
  margin: 0;
  max-width: 40rem;
}

@media (max-width: 768px) {
  .about-caution-paragraph {
    font-size: clamp(1.15rem, 3vw, 1.3rem);
  }
}
.values-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .values-content {
    flex-direction: column;
    gap: var(--spacing5);
  }
}
.values-left {
  flex: 0 0 35%;
}

@media (max-width: 768px) {
  .values-left {
    flex: 1;
  }
}
.values-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing4);
  max-width: 40rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing3);
  counter-reset: value-counter;
}

.values-item {
  font-size: var(--list-font-size);
  font-weight: var(--list-font-weight);
  line-height: var(--list-line-height);
  letter-spacing: var(--list-letter-spacing);
  color: var(--color-grey-dark);
  margin: 0;
  counter-increment: value-counter;
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}

.values-item::before {
  content: counter(value-counter) ".";
  position: absolute;
  left: 0;
  width: 1rem;
  text-align: right;
  font-weight: inherit;
  opacity: 0.5;
}

.purpose-content {
  max-width: 1350px;
  margin: 0 auto;
}

.purpose-paragraph {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-grey-dark);
  margin: 0;
}

.mission-statement-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .mission-statement-content {
    flex-direction: column;
    gap: var(--spacing3);
  }
}
.mission-statement-left {
  flex: 0 0 35%;
}

@media (max-width: 768px) {
  .mission-statement-left {
    flex: 1;
  }
}
.mission-statement-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing4);
  max-width: 40rem;
}

.mission-statement-paragraph {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-grey-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .mission-statement-paragraph {
    font-size: clamp(1.7rem, 2vw, 2.5rem);
  }
}
.team-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .team-content {
    flex-direction: column;
    gap: var(--spacing5);
  }
}
.team-left {
  flex: 0 0 35%;
}

@media (max-width: 768px) {
  .team-left {
    flex: 1;
  }
}
.team-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing4);
  max-width: 40rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing5);
  margin-top: var(--spacing4);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing4);
  }
}
.team-grid .team-member:nth-child(3) {
  grid-column: 1;
}

.team-grid .team-member:nth-child(4) {
  grid-column: 2;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: var(--spacing3);
}

.team-grid-item {
  aspect-ratio: 1;
  background-color: var(--color-grey-light);
  border-radius: var(--radius-md);
  min-height: 160px;
  overflow: hidden;
  position: relative;
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-image.mirrored {
  transform: scaleX(-1);
}

.team-member-name {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0;
  text-transform: none;
}

.team-member-title {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-grey-dark);
  margin: 0;
}

:root {
  --use-cases-font-size: clamp(3.5rem, 6vw, 6rem);
  --use-cases-line-height: 1.1;
}

.use-cases-page-body {
  position: relative;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light) !important;
}

.use-case-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing3);
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: 43rem;
}

.use-case-badges .badge {
  margin: 0;
  display: inline-block;
  border: none;
  padding: var(--spacing2) var(--spacing4);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.03) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.01) 0%, color(display-p3 0 0 0 / 0.01) 35%), linear-gradient(180deg, color(display-p3 1 1 1 / 0) 50%, color(display-p3 1 1 1 / 0.05) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.01) 0%, color(display-p3 1 1 1 / 0.01) 100%), linear-gradient(0deg, color(display-p3 1 1 1 / 0.03) 0%, color(display-p3 1 1 1 / 0.05) 100%), color(display-p3 0.95 0.95 0.95 / 0.03);
}

.use-case-badges .badge:hover {
  transform: translateY(-2px);
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.05) inset, 0 6px 16px rgba(0, 0, 0, 0.12);
}

.use-case-badges .badge span {
  color: var(--color-dark);
  font-size: clamp(1.1rem, 2vw, 1.15rem);
  font-weight: 400;
}

.use-cases-hero-section {
  padding: var(--spacing) 0 var(--spacing5) 0;
  display: flex;
  align-items: center;
  height: 100vh;
  z-index: 1;
}

.use-cases-hero-section .container {
  max-width: 1450px;
}

@media (max-width: 768px) {
  .use-cases-hero-section {
    height: auto;
    min-height: 100vh;
    padding: var(--spacing6) 0 var(--spacing5) 0;
  }
}
.use-cases-hero-title,
.use-cases-hero-subtitle {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0 auto;
  letter-spacing: -0.02em;
  max-width: 65rem;
  text-align: start;
}

@media (max-width: 768px) {
  .use-cases-hero-title,
  .use-cases-hero-subtitle {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
  }
}
.use-cases-hero-subtitle {
  opacity: 0.3;
  font-size: clamp(3.2rem, 6vw, 4.2rem);
  filter: blur(2px);
  margin-bottom: var(--spacing3);
  text-transform: none;
  text-decoration: underline;
}

.use-cases-hero-title {
  text-shadow: none;
  margin: var(--spacing5) auto;
  white-space: nowrap;
  text-transform: none;
  text-align: center;
}

@media (max-width: 960px) {
  .use-cases-hero-title {
    white-space: normal;
    margin: var(--spacing5) auto var(--spacing4) auto;
  }
}
.use-cases-hero-title--mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.use-cases-page-body .hero__subtext {
  text-align: center;
  margin: 0 auto var(--spacing5) auto;
  max-width: 45rem;
  color: var(--color-dark);
}

.typewriter-word {
  display: inline-block;
  min-width: 11ch;
  text-align: left;
  border-right: 2px solid var(--color-dark);
  padding-right: 0.1em;
  animation: blink-caret 0.75s step-end infinite;
}

.typewriter-word-mobile {
  display: inline-block;
  border-right: 2px solid var(--color-dark);
  padding-right: 0.1em;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--color-dark);
  }
}
.use-cases-hero-subtext {
  text-align: center;
  margin: 0 auto var(--spacing6) auto;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-dark);
  max-width: 43rem;
}

@media (max-width: 768px) {
  .use-cases-hero-subtext {
    margin: 0 auto var(--spacing4) auto;
  }
}
.use-case-section {
  padding: var(--spacing6) 0 var(--spacing7) 0;
  display: flex;
  align-items: center;
  background: none;
}

.use-case-section .container {
  max-width: 1450px;
}

.use-case-microlabel {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing1);
  text-align: start;
}

.use-case-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: white;
  margin: 0;
  max-width: 20rem;
  letter-spacing: -0.02em;
  text-align: start;
  text-transform: none;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.use-cases-subheading {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-grey);
  margin: 0;
  text-align: start;
}

.use-case-content {
  display: flex;
  gap: var(--spacing6);
  align-items: center;
  margin-bottom: var(--spacing8);
}

@media (max-width: 768px) {
  .use-case-content {
    flex-direction: column;
    gap: var(--spacing5);
  }
}
.use-case-section-title {
  flex: 0 20%;
  padding-left: var(--spacing4);
}

@media (max-width: 768px) {
  .use-case-section-title {
    flex: 1;
    padding-left: 0;
  }
}
.use-case-left {
  flex: 0 65%;
}

@media (max-width: 768px) {
  .use-case-left {
    flex: 1;
  }
}
.use-case-right {
  flex: 0 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  box-shadow: 16px 16px 9px -18px color(display-p3 0.88 0.88 0.88) inset, -12px -12px 6px -14px color(display-p3 0.88 0.88 0.88) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, color(display-p3 0 0 0 / 0.1) 0%, color(display-p3 0 0 0 / 0.1) 35%), linear-gradient(180deg, color(display-p3 0 0 0 / 0.1) 50%, color(display-p3 0 0 0 / 0.1) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0.02) 0%, color(display-p3 0 0 0 / 0.02) 100%), linear-gradient(0deg, color(display-p3 0 0 0 / 0.1) 0%, color(display-p3 0 0 0 / 0.1) 100%), color(display-p3 0 0 0 / 0);
}

@media (max-width: 960px) {
  .use-case-right {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .use-case-right {
    flex: 1;
    grid-template-columns: 1fr;
  }
}
.use-case-text {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: white;
}

.use-case-label {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.use-case-problem {
  padding: var(--spacing6);
}

@media (max-width: 768px) {
  .use-case-problem {
    padding: var(--spacing4);
  }
}
.sol {
  color: var(--dark);
}

.use-case-solution {
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(5px);
  background: white;
  align-content: center;
  box-shadow: 16px 16px 9px -18px color(display-p3 1 1 1) inset, -12px -12px 6px -14px color(display-p3 1 1 1) inset, 2px 2px 1px -2px color(display-p3 0.88 0.88 0.88) inset, 0 0 22px 0 color(display-p3 0.949 0.949 0.949 / 0.3) inset, 0 4px 12px rgba(0, 0, 0, 0.08);
}

.use-case-solution h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
}

.use-case-solution p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

@media (max-width: 768px) {
  .use-case-solution {
    padding: var(--spacing4);
  }
}
.info-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.info-banner.info-banner--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.info-banner__content {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.info-banner__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.4;
}

.info-banner__close {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.info-banner__close:hover {
  color: white;
}

.info-banner__close svg {
  width: 14px;
  height: 14px;
}

.early-access-page-body .header-navbar {
  top: 2.3rem;
  transition: top 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.early-access-page-body.banner-hidden .header-navbar {
  top: 0;
}

.early-access-page-body {
  background: var(--color-dark);
}

.early-access-hero-section {
  display: flex;
  align-items: center;
  height: 60vh;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  border-bottom: 2px solid var(--color-dark);
}

.early-access-hero-section .container {
  max-width: 1300px;
}

@media (max-width: 768px) {
  .early-access-hero-section {
    height: 50vh;
  }
}
.early-access-hero-title,
.early-access-hero-subtitle {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 550;
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  max-width: 50rem;
  text-align: center;
}

@media (max-width: 768px) {
  .early-access-hero-title,
  .early-access-hero-subtitle {
    font-size: clamp(3.5rem, 5vw, 4.5rem);
  }
}
.early-access-hero-subtitle {
  opacity: 0.3;
  font-size: clamp(3.2rem, 6vw, 4.2rem);
  filter: blur(2px);
  margin-bottom: var(--spacing3);
}

.early-access-hero-title {
  margin: var(--spacing6) auto var(--spacing5) auto;
}

.early-access-hero-description {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  color: var(--color-dark);
  max-width: 53rem;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

.early-access-section {
  padding: var(--spacing6) 0;
  display: flex;
  align-items: center;
  background: white;
}

.early-access-section .container {
  max-width: 1450px;
}

@media (max-width: 768px) {
  .early-access-section {
    padding: var(--spacing6) 0;
  }
}
.early-access-section-title {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  font-weight: 450;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 var(--spacing4) 0;
  letter-spacing: -0.02em;
  word-spacing: 0.1em;
}

@media (max-width: 1090px) {
  .early-access-section-title {
    font-size: clamp(1.7rem, 3vw, 2.7rem);
  }
}
@media (max-width: 960px) {
  .early-access-section-title {
    font-size: clamp(1.7rem, 5vw, 2.7rem);
  }
}
@media (max-width: 768px) {
  .early-access-section-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }
}
.early-access-section-subheading {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-grey);
  margin: 0;
}

.early-access-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .early-access-content {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.early-access-content-left {
  flex: 0 0 35%;
}

@media (max-width: 768px) {
  .early-access-content-left {
    flex: 1;
  }
}
.early-access-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing3);
  width: 95%;
  padding-top: var(--spacing5);
  max-width: 39rem;
}

@media (max-width: 1090px) {
  .early-access-content-right {
    padding-top: var(--spacing5);
    max-width: none;
  }
}
@media (max-width: 960px) {
  .early-access-content-right {
    padding-top: var(--spacing3);
  }
}
.early-access-content-right p {
  margin: 0;
}

.early-access-paragraph {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-grey-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .early-access-paragraph {
    font-size: clamp(1.15rem, 3vw, 1.3rem);
  }
}
.early-access-paragraph a {
  text-decoration: underline;
  font-weight: 400;
  color: inherit;
}

.early-access-paragraph a:hover {
  color: var(--color-pink);
}

.early-access-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: 28px;
}

.early-access-cta svg {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease;
}

.early-access-cta:hover {
  color: var(--color-pink);
}

.early-access-cta:hover svg {
  transform: translateX(4px);
}

.text-muted {
  color: var(--color-grey);
  opacity: 0.6;
  font-weight: 300;
}

.early-access-content-section--last {
  padding: var(--spacing6) 0 var(--spacing8) 0;
}

.early-access-badge {
  display: block;
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-bottom: var(--spacing3);
}

@media (max-width: 768px) {
  .early-access-badge {
    font-size: 0.85rem;
  }
}
.glass-early-access {
  background: var(--color-background);
}

.glass-early-access-hero {
  padding: var(--spacing8) 0 var(--spacing6) 0;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
}

.glass-early-access-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 var(--spacing4) 0;
  line-height: 1.2;
}

.glass-early-access-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-grey);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   404 Error Page Styles
   ============================================ */
.error-404-page {
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.error-404-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 80vh;
  z-index: 1;
}

.error-404-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.error-404-title {
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 300;
  color: var(--color-grey-dark);
  margin: 96px auto 12px auto;
  line-height: 1;
  letter-spacing: -0.02em;
}

.error-404-message {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  color: var(--color-grey);
  margin: var(--spacing5) 0 60px 0;
  font-weight: 300;
}

.error-404-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .error-404-container {
    min-height: calc(100vh - 150px);
  }
  .error-404-content {
    padding: 1.5rem;
  }
  .error-404-title {
    margin: 0;
  }
  .error-404-message {
    margin: 24px 0 32px 0;
  }
  .error-404-icon {
    width: 20px;
    height: 20px;
  }
}
.contact-page-body {
  background: var(--color-dark);
}

.contact-hero-section {
  display: flex;
  align-items: center;
  height: 50vh;
  background: radial-gradient(circle at 50% 25%, white 0%, transparent 60%) no-repeat, var(--color-blue-light);
  border-bottom: 2px solid var(--color-dark);
}

.contact-hero-section .container {
  max-width: 1300px;
}

@media (max-width: 768px) {
  .contact-hero-section {
    height: 40vh;
  }
}
.contact-hero-title {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 550;
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  max-width: 50rem;
  text-align: center;
  margin: var(--spacing6) auto var(--spacing4) auto;
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: clamp(3rem, 5vw, 4rem);
  }
}
.contact-hero-description {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  color: var(--color-dark);
  max-width: 40rem;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

.contact-section {
  padding: var(--spacing6) 0 var(--spacing8) 0;
  display: flex;
  align-items: center;
  background: white;
}

.contact-section .container {
  max-width: 1450px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: var(--spacing5) 0 var(--spacing6) 0;
  }
}
.contact-section-title {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  font-weight: 450;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 var(--spacing4) 0;
  letter-spacing: -0.02em;
  word-spacing: 0.1em;
}

@media (max-width: 768px) {
  .contact-section-title {
    font-size: clamp(2rem, 5vw, 2.7rem);
  }
}
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.contact-content-left {
  flex: 0 0 35%;
}

@media (max-width: 768px) {
  .contact-content-left {
    flex: 1;
  }
}
.contact-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing3);
  width: 95%;
  padding-top: var(--spacing3);
  max-width: 39rem;
}

.contact-content-right p {
  margin: 0;
}

.contact-paragraph {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-grey-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .contact-paragraph {
    font-size: clamp(1.15rem, 3vw, 1.3rem);
  }
}
.contact-paragraph a {
  text-decoration: underline;
  font-weight: 400;
  color: inherit;
}

.contact-paragraph a:hover {
  color: var(--color-pink);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: 28px;
}

.contact-cta svg {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease;
}

.contact-cta:hover {
  color: var(--color-pink);
}

.contact-cta:hover svg {
  transform: translateX(4px);
}

.contact-badge {
  display: block;
  font-family: ui-monospace, "SF Mono", Monaco, "Cascadia Code", Menlo, Consolas, "Courier New", monospace;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-bottom: var(--spacing3);
}

@media (max-width: 768px) {
  .contact-badge {
    font-size: 0.85rem;
  }
}

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