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

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

:root{
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --text: #0f1222;
  --muted: rgba(15,18,34,0.62);

  --line: rgba(15,18,34,0.10);
  --line-2: rgba(15,18,34,0.14);

  --brand: #5b3df5;
  --brand2: #7a5cff;

  --radius: 18px;
  --radius-lg: 26px;

  --shadow-sm: 0 12px 30px rgba(0,0,0,0.08);
  --shadow-md: 0 22px 70px rgba(0,0,0,0.12);

  --container: 1200px;
  --t: 0.35s cubic-bezier(.4,0,.2,1);
}

body{
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a{
  color: inherit;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.accent{
  color: rgba(91,61,245,0.98);
}

.muted{
  color: rgba(15,18,34,0.55);
}

.center{
  margin-top: 18px;
}

[data-animate]{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

[data-animate="fade"]{
  transform: none;
}

[data-animate].is-visible{
  opacity: 1;
  transform: none;
}

.hero [data-animate]{
  opacity: 1 !important;
  transform: none !important;
}