@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --brand:       #1500FF;
  --brand-dark:  #0E00CC;
  --brand-pale:  #ECEEFF;
  --brand-mid:   rgba(21,0,255,0.08);

  --text-dark:   #080808;
  --text-mid:    #3A3A3A;
  --text-light:  #7C7C80;

  --bg-white:    #FFFFFF;
  --bg-off:      #F5F5F7;
  --bg-dark:     #060608;
  --bg-dark-2:   #0E0E12;

  --border:      rgba(0,0,0,0.07);
  --border-dark: rgba(255,255,255,0.06);

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.05);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.13);
  --shadow-brand: 0 16px 48px rgba(21,0,255,0.3);

  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --t:      0.38s cubic-bezier(0.25,0.46,0.45,0.94);
  --t-fast: 0.2s  cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.12;
  font-weight: 700;
}

a   { text-decoration:none; color:inherit; transition:var(--t-fast); }
img { max-width:100%; display:block; }
ul  { list-style:none; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-padding { padding: 120px 0; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--brand);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.025rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.9;
  font-weight: 400;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--brand);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--r-xs);
  border: none;
  cursor: pointer;
  transition: var(--t);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--r-xs);
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--t);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* ── Reveal animations ── */
.reveal       { opacity:0; transform:translateY(36px);  transition:opacity .9s ease,transform .9s ease; }
.reveal-left  { opacity:0; transform:translateX(-36px); transition:opacity .9s ease,transform .9s ease; }
.reveal-right { opacity:0; transform:translateX(36px);  transition:opacity .9s ease,transform .9s ease; }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity:1; transform:none; }

@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes pulse    { 0%,100%{opacity:.5} 50%{opacity:1} }
