@font-face {
	font-family: "LexendLogo";
  src: url("/fonts/LexendVariable.ttf");
	font-weight: 200 800;
}
@font-face {
	font-family: "InterText";
  src: url("/fonts/InterVariable.ttf");
	font-weight: 200 400;
}

:root {
	--height-nav: 60px;
  --color-bg-nav: linear-gradient(to bottom right, #202020, #404040);
  --color-border-nav: #fff;
  --color-btn-ghost: #e0e0e0;
  --color-btn-clear: #fff;
  --color-text-btn-clear: #404040;
  --color-btn-hover: #09aeed;
  
  --height-hero: calc(100vh - var(--height-nav));
  --color-bg-hero: #05628a;
  --color-border-divider: #09aeed;
  --color-text-hero: #fff;
  --color-text-hero-muted: #808080;

  --color-text-feat: #505050;
  --color-text-muted: #808080;
  --color-text: #000;
  
  --color-bg-card: #fff;
  --color-bg-feat: #eee;
  --color-price-free: #CD132C;

  --color-bg-version-title: linear-gradient(to bottom right, #ccc, #eee);
  --color-btn-dl: #05628a;
  --color-btn-dl-hover: #09aeed;
  
  --font-logo: "LexendLogo", Arial, sans serif;
  --font-text: "InterText", Arial, sans serif;
}

body {
  margin: 0;
}

/* ── NAV BAR ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--height-nav);
  border-bottom: 0.5px solid var(--color-border-nav);
  background: var(--color-bg-nav);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: "InterText", Arial, sans serif;
  font-size: 14px;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-logo);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border 0.15s;
    border: 0.5px solid transparent;
    line-height: 1;
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-btn-ghost);
  color: var(--color-btn-ghost);
}

.btn-ghost:hover {
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary {
  background: var(--color-btn-clear);
  color: var(--color-text-btn-clear);
  border-color: var(--color-btn-clear);
}

.btn-primary:hover {
  background: var(--color-btn-hover);
  color: #fff;
}

.welcome {
	display: inline-flex;
  align-items: center;
  font-family: var(--font-logo);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.welcome a {
  font-weight: 800;
  color: #fff;
  padding-left: 10px;
  
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}

.welcome a:hover {
	color: #09aeed;
}

/* ── HERO ── */
.hero {
    display: flex;
    height: var(--height-hero);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background: var(--color-bg-hero);
    border-bottom: 10px solid var(--color-border-divider)
}

