:root {
  --hp-blue: #0067d1;
  --hp-blue-2: #0096ff;
  --navy: #081b3f;
  --dark: #03070d;
  --text: #111827;
  --muted: #5f6b7a;
  --line: #d8dee8;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.16);

  --home-blue: #0067d1;
  --home-blue-light: #28a7ff;
  --home-navy: #071b3f;
  --home-dark: #020617;
  --home-text: #101828;
  --home-muted: #667085;
  --home-soft: #f5f8fc;
  --home-line: #dbe3ef;
  --home-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.5;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 7px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: var(--hp-blue);
  color: white;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: white;
  background: rgba(0, 0, 0, 0.15);
}

.btn-dark {
  background: #05070b;
  color: white;
}

.btn-link {
  color: #111827;
  font-weight: 900;
}

.btn-link::before {
  content: "›";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
