* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(164, 128, 255, 0.18);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-soft: rgba(255, 255, 255, 0.45);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  --purple-glow: 160, 132, 255;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 78% 76%, rgba(173, 134, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #070707 0%, #020202 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  border-color: rgba(173, 134, 255, 0.30);
  background: rgba(255, 255, 255, 0.06);
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.lang-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  font: 600 0.95rem/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(173, 134, 255, 0.32);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.26);
}

.hero-grid {
  display: grid;
  gap: 26px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
}

.glass-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(var(--purple-glow), 0.18),
    rgba(255, 255, 255, 0.05)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-card {
  padding: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.78rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.63);
}

.hero-title {
  margin: 22px 0 0;
  max-width: 900px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.015em;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  color: #060606;
  background: linear-gradient(180deg, #ffffff 0%, #efefef 100%);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(173, 134, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-box {
  padding: 22px 20px;
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-box:hover {
  transform: translateY(-2px);
  border-color: rgba(173, 134, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
}

.feature-box h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-box p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.side-card {
  padding: 24px;
}

.window-frame {
  position: relative;
  height: 100%;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.window-dots {
  display: flex;
  gap: 10px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.30);
}

.window-dots span:first-child {
  background: rgba(255, 255, 255, 0.92);
}

.window-dots span:nth-child(2) {
  background: rgba(255, 255, 255, 0.56);
}

.panel {
  margin-top: 26px;
  padding: 30px;
  min-height: 540px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 -20px 80px rgba(0, 0, 0, 0.18);
}

.panel-kicker {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.panel-title {
  margin: 18px 0 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.panel-text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 32ch;
}

.mini-stack {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.mini-label,
.mini-line,
.tile {
  display: block;
  background: rgba(255, 255, 255, 0.11);
}

.mini-label {
  width: 92px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.78), rgba(173, 134, 255, 0.55));
}

.mini-label.wide {
  width: 122px;
}

.mini-line {
  height: 10px;
  border-radius: 999px;
  margin-top: 16px;
}

.mini-line.full {
  width: 100%;
}

.mini-line.soft {
  width: 84%;
  opacity: 0.82;
}

.tile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.tile {
  min-height: 92px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.06));
  border: 1px solid rgba(173, 134, 255, 0.18);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(173, 134, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
}

.orb-a {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(173,134,255,0.08) 35%, transparent 70%);
  animation: floatA 17s ease-in-out infinite;
}

.orb-b {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(173,134,255,0.12) 0%, rgba(255,255,255,0.05) 32%, transparent 72%);
  animation: floatB 21s ease-in-out infinite;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 86%);
  opacity: 0.38;
  pointer-events: none;
}

.noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@keyframes floatA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(44px, 36px, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes floatB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-36px, -28px, 0) scale(1.05); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 20px 16px 28px;
  }

  .topbar {
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .lang-toggle {
    align-self: flex-end;
  }

  .hero-card,
  .side-card {
    padding: 20px;
  }

  .window-frame,
  .panel {
    padding: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb-a,
  .orb-b,
  .btn,
  .feature-box,
  .brand,
  .lang-toggle {
    animation: none !important;
    transition: none !important;
  }
}
