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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ecebff;
  background: #020204;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ecebff;
}

p {
  color: rgba(236, 235, 255, 0.58);
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #060608;
}

::-webkit-scrollbar-thumb {
  background: #7C6EF4;
  border-radius: 9999px;
}

::selection {
  background: rgba(124, 110, 244, 0.3);
  color: #ecebff;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }
}
@media (max-width: 640px) {
  .container {
    padding-inline: 16px;
  }
}

.section {
  padding-block: 120px;
}
@media (max-width: 1024px) {
  .section {
    padding-block: 80px;
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: 60px;
  }
}
.section--dark {
  background: #060608;
}
.section--surface {
  background: #0c0c12;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

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

.code-label {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #00E5FF;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.code-label::before {
  content: "//";
  color: #7C6EF4;
  opacity: 0.7;
  font-weight: 700;
}

.section-title {
  font-size: 28px;
}
@media (min-width: 400px) {
  .section-title {
    font-size: calc(28px + 24 * (100vw - 400px) / 880);
  }
}
@media (min-width: 1280px) {
  .section-title {
    font-size: 52px;
  }
}
.section-title {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title .gradient {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(236, 235, 255, 0.58);
  line-height: 1.8;
  max-width: 580px;
}
.section-subtitle--center {
  margin-inline: auto;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.055);
}
.divider--accent {
  background: rgba(124, 110, 244, 0.38);
}

.reveal {
  will-change: opacity, transform;
}
.reveal--d1 {
  transition-delay: 0.08s;
}
.reveal--d2 {
  transition-delay: 0.16s;
}
.reveal--d3 {
  transition-delay: 0.24s;
}
.reveal--d4 {
  transition-delay: 0.32s;
}
.reveal--d5 {
  transition-delay: 0.4s;
}
.reveal--d6 {
  transition-delay: 0.48s;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  gap: 8px;
  padding: 13px 32px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid #7C6EF4;
  outline-offset: 3px;
}
.btn i {
  font-size: 16px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:hover i {
  transform: translateX(3px);
}
.btn--primary {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  color: #fff;
  box-shadow: 0 0 28px rgba(124, 110, 244, 0.35);
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9d93f7, #38d9f5);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(124, 110, 244, 0.55);
}
.btn--primary:hover::before {
  opacity: 1;
}
.btn--primary span {
  position: relative;
  z-index: 1;
}
.btn--primary i {
  position: relative;
  z-index: 1;
}
.btn--ghost {
  background: transparent;
  color: #ecebff;
  border: 1px solid rgba(124, 110, 244, 0.38);
}
.btn--ghost:hover {
  background: rgba(124, 110, 244, 0.08);
  border-color: rgba(124, 110, 244, 0.6);
  transform: translateY(-2px);
}
.btn--mono {
  padding: 10px 24px;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #00E5FF;
  border: 1px solid rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.04);
}
.btn--mono:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.5);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  border-radius: 9999px;
  border: 1px solid rgba(124, 110, 244, 0.22);
  background: rgba(124, 110, 244, 0.08);
  color: rgba(236, 235, 255, 0.58);
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.chip--cyan {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.06);
  color: rgba(0, 229, 255, 0.7);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(236, 235, 255, 0.28);
  text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: #0c0c12;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  font-size: 13px;
  color: #ecebff;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: rgba(236, 235, 255, 0.28);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #7C6EF4;
  box-shadow: 0 0 0 3px rgba(124, 110, 244, 0.12);
  outline: none;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.8;
}

.form-select option {
  background: #0c0c12;
}

.stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  color: #f59e0b;
  font-size: 12px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-inline: 24px;
  transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.is-scrolled {
  background: rgba(2, 2, 4, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: 0 1px 0 rgba(124, 110, 244, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin-inline: auto;
  height: 70px;
}

.nav-logo img {
  height: 34px;
  width: auto;
  filter: brightness(1.05);
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo img:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}
.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: rgba(236, 235, 255, 0.58);
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: #ecebff;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
@media (max-width: 1024px) {
  .nav-cta {
    display: none;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  color: #ecebff;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(2, 2, 4, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding: 16px 20px 24px;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.is-open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(236, 235, 255, 0.58);
  border-radius: 8px;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #ecebff;
}
.mobile-nav .btn--primary {
  margin-top: 12px;
  justify-content: center;
  border-radius: 14px;
}

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(124, 110, 244, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 110, 244, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 10%, black, transparent);
  z-index: 0;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 110, 244, 0.14) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 0;
  pointer-events: none;
  animation: hero-glow-breathe 8s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-glow {
    width: 400px;
    height: 400px;
  }
}

@keyframes hero-glow-breathe {
  0%, 100% {
    transform: translate(-50%, -55%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -55%) scale(1.12);
    opacity: 1;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding-block: 100px 80px;
}
@media (max-width: 768px) {
  .hero-content {
    padding-block: 60px 48px;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  display: inline-flex;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 9999px;
  font-size: 11px;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  color: rgba(236, 235, 255, 0.58);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.hero-eyebrow .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00E5FF;
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.6);
    opacity: 0.4;
  }
}
.hero-headline {
  font-size: 40px;
}
@media (min-width: 400px) {
  .hero-headline {
    font-size: calc(40px + 42 * (100vw - 400px) / 880);
  }
}
@media (min-width: 1280px) {
  .hero-headline {
    font-size: 82px;
  }
}
.hero-headline {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #ecebff;
  margin-bottom: 24px;
}
.hero-headline .gradient {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-headline .word {
  display: inline-block;
  overflow: hidden;
}
.hero-headline .word-inner {
  display: inline-block;
  will-change: transform;
}

.hero-sub {
  font-size: 16px;
}
@media (min-width: 400px) {
  .hero-sub {
    font-size: calc(16px + 4 * (100vw - 400px) / 880);
  }
}
@media (min-width: 1280px) {
  .hero-sub {
    font-size: 20px;
  }
}
.hero-sub {
  color: rgba(236, 235, 255, 0.58);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}
@media (max-width: 640px) {
  .hero-sub {
    max-width: 100%;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}
@media (max-width: 768px) {
  .hero-stats {
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .hero-stats {
    gap: 20px;
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .hero-stat-num {
    font-size: 30px;
  }
}

.hero-stat-label {
  font-size: 11px;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  color: rgba(236, 235, 255, 0.28);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0.4;
  animation: scroll-fade 3s ease-in-out infinite;
}
.scroll-indicator span {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(236, 235, 255, 0.28);
}
.scroll-indicator i {
  font-size: 18px;
  color: rgba(236, 235, 255, 0.28);
}

@keyframes scroll-fade {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(4px);
  }
}
#pedigree {
  padding-block: 80px;
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.pedigree-header {
  text-align: center;
  margin-bottom: 48px;
}

.pedigree-title {
  font-size: 26px;
}
@media (min-width: 400px) {
  .pedigree-title {
    font-size: calc(26px + 16 * (100vw - 400px) / 880);
  }
}
@media (min-width: 1280px) {
  .pedigree-title {
    font-size: 42px;
  }
}
.pedigree-title {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.pedigree-title .gradient {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pedigree-sub {
  font-size: 16px;
  color: rgba(236, 235, 255, 0.58);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.marquee-overflow {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  padding: 12px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  white-space: nowrap;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.marquee-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.marquee-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.marquee-name {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(236, 235, 255, 0.28);
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.marquee-item:hover .marquee-name {
  color: rgba(236, 235, 255, 0.58);
}

.pedigree-callout {
  text-align: center;
  margin-top: 48px;
}

.pedigree-callout-inner {
  display: inline-block;
  max-width: 780px;
  padding: 32px 48px;
  background: rgba(124, 110, 244, 0.04);
  border: 1px solid rgba(124, 110, 244, 0.38);
  border-radius: 22px;
}
@media (max-width: 768px) {
  .pedigree-callout-inner {
    padding: 24px;
  }
}
.pedigree-callout-inner p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(236, 235, 255, 0.58);
}
.pedigree-callout-inner p strong {
  color: #ecebff;
}

#services {
  padding-block: 120px;
}
@media (max-width: 1024px) {
  #services {
    padding-block: 80px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 36px;
  overflow: hidden;
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #0e0e16;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
@media (max-width: 768px) {
  .service-card {
    padding: 32px 24px;
  }
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(124, 110, 244, 0.07), rgba(0, 229, 255, 0.04));
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  background: #101018;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover .service-icon {
  background: rgba(124, 110, 244, 0.2);
  box-shadow: 0 0 20px rgba(124, 110, 244, 0.35);
  transform: scale(1.08) rotate(4deg);
}
.service-card:hover .service-num {
  opacity: 0.8;
}
.service-card:hover .service-arrow {
  transform: translate(3px, -3px);
}

.service-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-num {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  color: #7C6EF4;
  opacity: 0.45;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(124, 110, 244, 0.1);
  border: 1px solid rgba(124, 110, 244, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.service-tag {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #00E5FF;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.75;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #ecebff;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(236, 235, 255, 0.58);
  flex-grow: 1;
}

.service-chips {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 18px;
  color: rgba(236, 235, 255, 0.28);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-arrow {
  color: #7C6EF4;
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

#about {
  padding-block: 120px;
  background: #060608;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #about {
    padding-block: 80px;
  }
}
#about::before {
  content: "";
  position: absolute;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 110, 244, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.manifesto-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .manifesto-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.manifesto-left {
  position: relative;
  z-index: 1;
}

.manifesto-terminal {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7C6EF4;
  opacity: 0.6;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.manifesto-terminal::before {
  content: "$ ";
  color: #00E5FF;
}

.manifesto-headline {
  font-size: 30px;
}
@media (min-width: 400px) {
  .manifesto-headline {
    font-size: calc(30px + 20 * (100vw - 400px) / 880);
  }
}
@media (min-width: 1280px) {
  .manifesto-headline {
    font-size: 50px;
  }
}
.manifesto-headline {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 32px;
}
.manifesto-headline .gradient {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.manifesto-quote {
  position: relative;
  padding: 32px;
  background: rgba(124, 110, 244, 0.04);
  border-left: 2px solid #7C6EF4;
  border-radius: 0 14px 14px 0;
  margin-bottom: 32px;
}
.manifesto-quote .quote-mark {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 72px;
  line-height: 0.8;
  color: #7C6EF4;
  opacity: 0.25;
  position: absolute;
  top: 16px;
  left: 16px;
  font-weight: 900;
  pointer-events: none;
}
.manifesto-quote p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: rgba(236, 235, 255, 0.58);
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.manifesto-attr {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  color: rgba(236, 235, 255, 0.28);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.manifesto-attr::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #7C6EF4;
  flex-shrink: 0;
}
.manifesto-attr strong {
  color: rgba(236, 235, 255, 0.58);
  font-weight: 500;
}

.manifesto-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .manifesto-principles {
    grid-template-columns: 1fr;
  }
}

.principle-card {
  padding: 24px;
  background: #0e0e16;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  transition: border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.principle-card:hover {
  border-color: rgba(124, 110, 244, 0.38);
  box-shadow: 0 0 24px rgba(124, 110, 244, 0.1);
  transform: translateY(-3px);
}

.principle-num {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #7C6EF4;
  opacity: 0.6;
  margin-bottom: 12px;
}

.principle-icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.principle-title {
  font-size: 16px;
  font-weight: 700;
  color: #ecebff;
  margin-bottom: 8px;
}

.principle-desc {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(236, 235, 255, 0.28);
}

#labs {
  padding-block: 120px;
}
@media (max-width: 1024px) {
  #labs {
    padding-block: 80px;
  }
}

.labs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .labs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .labs-grid {
    grid-template-columns: 1fr;
  }
}

.lab-card {
  background: #0e0e16;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.lab-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(124, 110, 244, 0.07), rgba(0, 229, 255, 0.04));
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.lab-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.lab-card:hover {
  border-color: rgba(124, 110, 244, 0.38);
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 110, 244, 0.1);
}
.lab-card:hover::before {
  opacity: 1;
}
.lab-card:hover::after {
  transform: scaleX(1);
}
.lab-card:hover .lab-read-more {
  color: #7C6EF4;
  gap: 10px;
}
.lab-card:hover .lab-read-more i {
  transform: translate(4px, -4px);
}

.lab-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lab-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}

.lab-tag {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00E5FF;
  padding: 3px 10px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 9999px;
  background: rgba(0, 229, 255, 0.05);
}

.lab-date {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  color: rgba(236, 235, 255, 0.28);
}

.lab-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #ecebff;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
}
.lab-card:hover .lab-title {
  color: #fff;
}

.lab-excerpt {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(236, 235, 255, 0.58);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lab-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.lab-read-time {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  color: rgba(236, 235, 255, 0.28);
}

.lab-read-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(236, 235, 255, 0.58);
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), gap 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lab-read-more i {
  font-size: 14px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#testimonials {
  padding-block: 120px;
  background: #060608;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #testimonials {
    padding-block: 80px;
  }
}

.testimonials-slider {
  margin-top: 64px;
  position: relative;
}

.testimonials-track-wrap {
  overflow: hidden;
  cursor: grab;
}
.testimonials-track-wrap:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  user-select: none;
  will-change: transform;
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: #0e0e16;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (max-width: 640px) {
  .testimonial-card {
    width: 300px;
  }
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.testimonial-card:hover {
  border-color: rgba(124, 110, 244, 0.38);
  transform: translateY(-4px);
}
.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testi-quote {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  line-height: 1;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 900;
}

.testi-pull {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #ecebff;
  font-style: italic;
}

.testi-body {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(236, 235, 255, 0.58);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testi-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.055);
}

.testi-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #ecebff;
  margin-bottom: 2px;
}

.testi-title {
  font-size: 11px;
  color: rgba(236, 235, 255, 0.28);
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
}

.slider-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: #0e0e16;
  color: rgba(236, 235, 255, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-btn:hover {
  border-color: rgba(124, 110, 244, 0.38);
  color: #ecebff;
  background: rgba(124, 110, 244, 0.08);
}

#contact {
  padding-block: 120px;
}
@media (max-width: 1024px) {
  #contact {
    padding-block: 80px;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-headline {
  font-size: 28px;
}
@media (min-width: 400px) {
  .contact-headline {
    font-size: calc(28px + 18 * (100vw - 400px) / 880);
  }
}
@media (min-width: 1280px) {
  .contact-headline {
    font-size: 46px;
  }
}
.contact-headline {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-headline .gradient {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-lead {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(236, 235, 255, 0.58);
  margin-bottom: 40px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-meta-item:hover {
  border-color: rgba(124, 110, 244, 0.38);
  background: rgba(124, 110, 244, 0.04);
}

.meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(124, 110, 244, 0.12);
  border: 1px solid rgba(124, 110, 244, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #7C6EF4;
  flex-shrink: 0;
}

.meta-text p:first-child {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(236, 235, 255, 0.28);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.meta-text p:last-child {
  font-size: 13px;
  color: #ecebff;
  font-weight: 500;
}

.contact-panel {
  background: #0e0e16;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 36px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-panel {
    padding: 32px;
  }
}
@media (max-width: 640px) {
  .contact-panel {
    padding: 24px;
  }
}
.contact-panel::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 110, 244, 0.08), transparent 65%);
  pointer-events: none;
}

.panel-header {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.panel-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.panel-header p {
  font-size: 13px;
  color: rgba(236, 235, 255, 0.28);
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  border: none;
  border-radius: 14px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 30px rgba(124, 110, 244, 0.28);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9d93f7, #30d9f0);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-submit span, .form-submit i {
  position: relative;
  z-index: 1;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(124, 110, 244, 0.45);
}
.form-submit:hover::before {
  opacity: 1;
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

#form-status {
  text-align: center;
  font-size: 11px;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  color: rgba(236, 235, 255, 0.28);
  margin-top: 12px;
  min-height: 20px;
}

.site-footer {
  padding-top: 80px;
  padding-bottom: 32px;
  background: #020204;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand img {
  height: 34px;
  margin-bottom: 20px;
  filter: brightness(1.05);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(236, 235, 255, 0.28);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
}

.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.055);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(236, 235, 255, 0.28);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
  background: rgba(124, 110, 244, 0.08);
  border-color: rgba(124, 110, 244, 0.38);
  color: #7C6EF4;
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 235, 255, 0.28);
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(236, 235, 255, 0.58);
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-col ul li a:hover {
  color: #ecebff;
}
.footer-col ul li a i {
  font-size: 12px;
}

.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item i {
  font-size: 15px;
  color: #7C6EF4;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item p, .footer-contact-item a {
  font-size: 13px;
  color: rgba(236, 235, 255, 0.28);
  line-height: 1.6;
}
.footer-contact-item a:hover {
  color: #00E5FF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}
.footer-bottom p {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 12px;
  color: rgba(236, 235, 255, 0.28);
}
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-tagline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  color: rgba(236, 235, 255, 0.15);
}
.footer-tagline span:nth-child(2) {
  color: #7C6EF4;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7C6EF4;
  pointer-events: none;
  z-index: 9000;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  mix-blend-mode: normal;
}
@media (max-width: 1024px) {
  .cursor-dot {
    display: none;
  }
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(124, 110, 244, 0.5);
  pointer-events: none;
  z-index: 9000;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s;
}
.cursor-ring.is-hovered {
  width: 56px;
  height: 56px;
  border-color: rgba(124, 110, 244, 0.8);
  background: rgba(124, 110, 244, 0.05);
}
@media (max-width: 1024px) {
  .cursor-ring {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cta-strip {
  padding-block: 80px;
  background: linear-gradient(135deg, rgba(124, 110, 244, 0.1), rgba(0, 229, 255, 0.05));
  border-top: 1px solid rgba(124, 110, 244, 0.38);
  border-bottom: 1px solid rgba(124, 110, 244, 0.38);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}

.cta-strip-text h2 {
  font-size: 22px;
}
@media (min-width: 400px) {
  .cta-strip-text h2 {
    font-size: calc(22px + 14 * (100vw - 400px) / 880);
  }
}
@media (min-width: 1280px) {
  .cta-strip-text h2 {
    font-size: 36px;
  }
}
.cta-strip-text h2 {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.cta-strip-text h2 .gradient {
  background: linear-gradient(135deg, #7C6EF4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.cta-strip-text p {
  font-size: 16px;
  color: rgba(236, 235, 255, 0.58);
}

.cta-strip-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cta-strip-actions {
    flex-direction: column;
    width: 100%;
  }
}

#portfolio {
  padding-block: 120px;
  background: #060608;
}
@media (max-width: 1024px) {
  #portfolio {
    padding-block: 80px;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 36px;
  overflow: hidden;
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0e0e16;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(60%) brightness(0.55);
}
.portfolio-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(0.75);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 2, 4, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tech {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #00E5FF;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 700;
  color: #ecebff;
}

#team {
  padding-block: 120px;
}
@media (max-width: 1024px) {
  #team {
    padding-block: 80px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  background: #0e0e16;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover {
  border-color: rgba(124, 110, 244, 0.38);
  transform: translateY(-5px);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 40px rgba(0, 0, 0, 0.55);
}
.team-card:hover .team-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.team-photo-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(35%);
  transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: #ecebff;
  margin-bottom: 3px;
}

.team-role {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11px;
  color: #00E5FF;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 12px;
  color: rgba(236, 235, 255, 0.28);
  font-style: italic;
}

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