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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e7e7f5;
  background: #0a0a1f;
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 58, 237, 0.25), transparent 60%), radial-gradient(ellipse 60% 40% at 100% 30%, rgba(59, 130, 246, 0.12), transparent 60%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fff;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
  color: #9ca3c4;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #7c3aed;
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  position: relative;
  display: inline-block;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #9ca3c4;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 24px;
  isolation: isolate;
  transition: color 0.5s ease, border-color 0.5s ease;
}
.eyebrow .eyebrow__glow-svg {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.eyebrow .eyebrow__glow-ring,
.eyebrow .eyebrow__glow-halo {
  fill: none;
  stroke-linecap: round;
}
.eyebrow .eyebrow__glow-ring {
  stroke-width: 1.5;
}
.eyebrow .eyebrow__glow-halo {
  stroke-width: 5;
  filter: blur(6px);
  opacity: 0.45;
}
.eyebrow.is-glowing {
  color: #fff;
  border-color: transparent;
}
.eyebrow.is-glowing .eyebrow__glow-svg {
  opacity: 1;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head .section-sub {
  font-size: 1.1rem;
  margin-top: 16px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.btn::before, .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.btn::before {
  padding: 1px;
  background: radial-gradient(260px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.75), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.btn::after {
  background: radial-gradient(320px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.14), transparent 40%);
  z-index: -1;
}
.btn:hover::before, .btn:hover::after {
  opacity: 1;
}
.btn > * {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 20px 60px -20px rgba(99, 102, 241, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 40px 120px -30px rgba(124, 58, 237, 0.45);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #e7e7f5;
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: #6366f1;
  color: #fff;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  color: #9ca3c4;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta {
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding: 10px 20px;
  font-size: 0.88rem;
  transition: transform 0.42s cubic-bezier(0.65, 0, 0.35, 1);
}

.site-header.is-scrolled .header-cta {
  transform: translateX(calc(var(--lang-switcher-width, 0px) + 24px));
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
}
.lang-switcher__indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
  box-shadow: 0 6px 20px -8px rgba(124, 58, 237, 0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.42s cubic-bezier(0.65, 0, 0.35, 1), width 0.42s cubic-bezier(0.65, 0, 0.35, 1), height 0.42s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s ease;
}
.lang-switcher__indicator.is-ready {
  opacity: 1;
}
.lang-switcher button, .lang-switcher a {
  position: relative;
  z-index: 1;
  appearance: none;
  background: transparent;
  border: 0;
  color: #9ca3c4;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease;
}
.lang-switcher button:hover, .lang-switcher a:hover {
  color: #fff;
}
.lang-switcher button.is-active, .lang-switcher a.is-active {
  color: #fff;
}

.site-header.is-scrolled .lang-switcher {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .lang-switcher {
    margin-left: auto;
  }
  .lang-switcher button, .lang-switcher a {
    padding: 6px 9px;
    font-size: 0.7rem;
  }
}
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, rgba(59, 130, 246, 0.12) 30%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  margin-bottom: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content .eyebrow {
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #9ca3c4;
  max-width: 560px;
  margin: 0 0 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  overflow: visible;
}

.hero-planet {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(124, 58, 237, 0.45));
  animation: float 8s ease-in-out infinite;
}

.hero-planet-3d {
  position: absolute;
  top: 50%;
  right: -35vw;
  width: 1100px;
  max-width: 80vw;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  animation: float 10s ease-in-out infinite;
}
.hero-planet-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(calc(-50% - 18px)) rotate(1.5deg);
  }
}
@media (max-width: 1024px) {
  .hero-inner {
    position: static;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    aspect-ratio: auto;
    display: block;
    pointer-events: none;
    margin: 0;
  }
  .hero-planet-3d {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    top: 20vh;
    opacity: 60%;
    max-width: none;
    aspect-ratio: auto;
    transform: none;
    animation: none;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 62%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 62%, transparent 100%);
  }
}
.hero-stats {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.hero-stats::before, .hero-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.hero-stats::before {
  padding: 1px;
  background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(139, 92, 246, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.hero-stats::after {
  background: radial-gradient(700px circle at var(--mouse-x) var(--mouse-y), rgba(139, 92, 246, 0.08), transparent 40%);
  z-index: -1;
}
.hero-stats:hover::before, .hero-stats:hover::after {
  opacity: 1;
}
.hero-stats li {
  text-align: center;
  position: relative;
}
.hero-stats strong {
  display: block;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.hero-stats span {
  font-size: 0.82rem;
  color: #6b7299;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-planet {
    max-width: 380px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 70px 0 50px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  .hero-planet {
    max-width: 300px;
  }
}
.trust {
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust .trust-label {
  text-align: center;
  font-size: 0.82rem;
  color: #6b7299;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  align-items: center;
}
.trust-logos span {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #6b7299;
  letter-spacing: 0.12em;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.trust-logos span:hover {
  opacity: 1;
  color: #e7e7f5;
}

.services {
  padding: 120px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-grid:hover .service-card::after {
  opacity: 1;
}

.service-card {
  position: relative;
  isolation: isolate;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0, 1);
  will-change: transform;
}
.service-card.is-tilting {
  transition: transform 0.12s ease-out;
}
.service-card::before, .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card::after {
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(139, 92, 246, 0.4), transparent 40%);
  z-index: 1;
}
.service-card::before {
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
  z-index: 3;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:not(.service-card--cta):hover .service-card__bg {
  background: #1a1a3d;
}
.service-card > *:not(.service-card__bg) {
  position: relative;
  z-index: 2;
}
.service-card h3 {
  color: #fff;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-card.featured .service-card__bg {
  background: linear-gradient(180deg, #1a1a3d 0%, rgba(99, 102, 241, 0.08) 100%);
}

.service-card__bg {
  position: absolute;
  inset: 1px;
  border-radius: calc(16px - 1px);
  background: #151533;
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.12) 50%, rgba(59, 130, 246, 0.16) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #a78bfa;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags li {
  font-size: 0.78rem;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #9ca3c4;
}

.service-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: 0 20px 60px -20px rgba(99, 102, 241, 0.35);
}
.service-card--cta .service-card__bg {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #3b82f6 50%, #8b5cf6 75%, #6366f1 100%);
  background-size: 300% 300%;
  animation: cta-gradient-shift 14s ease-in-out infinite;
  transition: filter 0.5s ease;
}
.service-card--cta:hover .service-card__bg {
  filter: brightness(1.12) saturate(1.08);
}
.service-card--cta::before, .service-card--cta::after {
  display: none;
}
.service-card--cta h3 {
  color: #fff;
  font-size: 1.4rem;
}
.service-card--cta p {
  color: rgba(255, 255, 255, 0.88);
}
.service-card--cta .btn {
  background: #fff;
  color: #7c3aed;
  align-self: center;
  box-shadow: none;
}
.service-card--cta .btn:hover {
  background: #f5f5ff;
  color: #7c3aed;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.capabilities {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cap-copy p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cap-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3c4;
}
.cap-list li strong {
  color: #fff;
  font-weight: 600;
}
.cap-list li:last-child {
  border-bottom: none;
}

.cap-visual {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.cap-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151533;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0, 1);
  will-change: transform;
}
.cap-card.is-tilting {
  transition: transform 0.12s ease-out;
}
.cap-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes cta-gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (max-width: 1024px) {
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .cap-visual {
    max-width: 320px;
  }
}
.faq {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-list details summary {
  list-style: none;
  cursor: pointer;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list details summary::-webkit-details-marker {
  display: none;
}
.faq-list details summary::after {
  content: "+";
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  color: #6366f1;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-list details.is-open summary::after {
  transform: rotate(135deg);
}
.faq-list .faq-answer {
  overflow: hidden;
  will-change: height;
}
.faq-list .faq-answer p {
  margin-top: 16px;
  margin-bottom: 0;
  color: #9ca3c4;
}

.contact {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-info li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #e7e7f5;
}
.contact-info li span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7299;
}
.contact-info li a:hover {
  color: #6366f1;
}
.contact-info li:last-child {
  border-bottom: none;
}

.contact-form-wrap {
  position: relative;
}

.contact-success {
  padding: 72px 40px;
  text-align: center;
  background: #151533;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px -20px rgba(99, 102, 241, 0.35);
}
.contact-success[hidden] {
  display: none;
}
.contact-success lottie-player,
.contact-success .contact-success__lottie {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
}
.contact-success h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.contact-success p {
  color: #6b7299;
  max-width: 320px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.contact-form {
  position: relative;
  isolation: isolate;
  padding: 40px;
  background: #151533;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px -20px rgba(99, 102, 241, 0.35);
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.contact-form button[type=submit] {
  overflow: hidden;
  max-height: 120px;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease, margin-top 0.4s ease, border-width 0.4s ease;
}
.contact-form.is-submitting button[type=submit] {
  opacity: 0;
  transform: translateY(-6px);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  border-width: 0;
  pointer-events: none;
}
.contact-form::before, .contact-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.contact-form::before {
  padding: 1px;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(139, 92, 246, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.contact-form::after {
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(139, 92, 246, 0.06), transparent 40%);
  z-index: -1;
}
.contact-form:hover::before, .contact-form:hover::after {
  opacity: 1;
}
.contact-form .field {
  position: relative;
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7299;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #0a0a1f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #e7e7f5;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%239ca3c4' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form .form-fineprint {
  font-size: 0.78rem;
  color: #6b7299;
  text-align: center;
  margin: 16px 0 0;
}
.contact-form .form-fineprint a {
  color: #6366f1;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }
  .contact-form {
    padding: 28px;
  }
}
.brand-footer-band {
  --brand-huge-size: clamp(5rem, 22vw, 18rem);
  --brand-huge-submerge: calc(var(--brand-huge-size) * -0.27);
  padding: 60px 0 0;
  text-align: center;
  margin-bottom: var(--brand-huge-submerge);
}

.brand-huge {
  display: block;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 800;
  font-size: var(--brand-huge-size);
  line-height: 0.9;
  letter-spacing: -0.04em;
  user-select: none;
}

.brand-huge__letter {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.3;
  filter: drop-shadow(0 0 0 rgba(139, 92, 246, 0));
  transition: opacity 2.2s cubic-bezier(0.22, 1, 0.36, 1), filter 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-huge__letter:hover {
  opacity: 1;
  filter: drop-shadow(0 0 28px rgba(139, 92, 246, 0.55)) drop-shadow(0 0 60px rgba(99, 102, 241, 0.35));
  transition-duration: 1.9s;
}

.site-footer {
  padding: 80px 0 40px;
  background: #0f0f2b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
.footer-grid h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7299;
  margin-bottom: 18px;
}
.footer-grid ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #9ca3c4;
}
.footer-grid ul a:hover {
  color: #fff;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 16px;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #6b7299;
}
.footer-bottom p {
  margin: 0;
  color: #6b7299;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.legal {
  padding: 80px 0 120px;
}

.legal-inner {
  max-width: 780px;
}
.legal-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 8px;
}
.legal-inner .updated {
  color: #6b7299;
  font-size: 0.9rem;
  margin-bottom: 48px;
}
.legal-inner h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  color: #fff;
}
.legal-inner p, .legal-inner li {
  color: #9ca3c4;
  font-size: 1rem;
}
.legal-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1em;
}
.legal-inner ul li {
  padding: 4px 0;
}
.legal-inner a {
  color: #6366f1;
  text-decoration: underline;
}
.legal-inner a:hover {
  color: #fff;
}
.legal-inner .btn {
  text-decoration: none;
}
.legal-inner .btn-ghost {
  color: #e7e7f5;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}
:root {
  --animate-duration: 0.8s;
  --animate-delay: 0.1s;
}

.wow {
  visibility: hidden;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ring, .orb, .hero-planet {
    animation: none !important;
  }
  .wow {
    visibility: visible !important;
  }
}
