/* =========================
   Local Font Configuration
========================= */

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-v20-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-v20-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Global Styles
========================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0b0f14;
  color: #e6edf3;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  color: #00f0ff;
}

.lang-switch button {
  background: none;
  border: 1px solid #00f0ff;
  color: #00f0ff;
  padding: 6px 12px;
  margin-left: 5px;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 120px 10% 80px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero p {
  color: #9aa4b2;
  max-width: 600px;
  margin: auto;
  font-weight: 300;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 26px;
  border: 2px solid #00f0ff;
  color: #00f0ff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #00f0ff;
  colo
