/* Brand Colors */
:root {
  --black: #000000;
  --black-1: #000000;
  --black-2: #101013;
  --black-3: #202023;
  --black-nice: #131418;

  --white: #FAFAFF;
  --white-0: #FAFAFF;
  --white-1: #DFDFF2;
  --white-2: #C5C5E8;

  --blue: #57c7ff;
  --blue-0: #57c7ff;
  --blue-1: #064b80;
  --blue-2: #032742;

  --red: #BA1C43;
  --orange: #FE4F00;
  --yellow: #FFC800;

  --green: #02d689;
  --green-0: #02d689;
  --green-1: #4a998f;
}

/* Fonts */
@font-face {
  font-family: "Raleway-Thin";
  font-style: normal;
  font-weight: 100;
  src: url("fonts/Raleway-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway-Medium";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Raleway-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway-Bold";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/Raleway-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway-Heavy";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/Raleway-Heavy.ttf") format("truetype");
}

@font-face {
  font-family: "Heebo-Light";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/Heebo-Light.woff") format("woff");
}

@font-face {
  font-family: "Heebo-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Heebo-Regular.woff") format("woff");
}

@font-face {
  font-family: "Heebo-Heavy";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/Heebo-ExtraBold.woff") format("woff");
}

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

body {
  background-color: var(--black-2);
  color: var(--white);
  font-family: "Heebo-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: "Raleway-Medium", sans-serif;
}

/* Main */
.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Sections */
section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

/* Hero */
.hero {
}

.hero-logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Raleway-Bold", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hero-sub {
  font-family: "Heebo-Light", sans-serif;
  font-size: 1.25rem;
  color: var(--white-1);
}

/* Metrics */
.metrics {
  padding: 32px 24px;
  max-width: 100%;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  background: var(--black-3);
  border-radius: 12px;
  padding: 48px 32px 36px;
}

.metric {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.metric-aside {
  position: absolute;
  top: -8px;
  right: -12px;
  font-family: "Raleway-Bold", sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--white);
  transform: rotate(-6deg);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.metric-number {
  font-family: "Raleway-Heavy", sans-serif;
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1.1;
}

.metric-label {
  font-family: "Heebo-Regular", sans-serif;
  font-size: 0.8rem;
  color: var(--white-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric:nth-child(1) .metric-aside {
  transform: rotate(-3deg);
  right: -10px;
}

.metric:nth-child(2) .metric-aside {
  transform: rotate(4deg);
  top: -6px;
  right: -14px;
}

.metric:nth-child(3) .metric-aside {
  transform: rotate(-5deg);
  top: -10px;
}

.metric:nth-child(4) .metric-aside {
  transform: rotate(6deg);
  color: var(--yellow);
  right: -8px;
}

/* CTA */
.cta h2 {
  font-family: "Raleway-Bold", sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-text {
  font-family: "Heebo-Light", sans-serif;
  font-size: 1.15rem;
  color: var(--white-1);
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  color: var(--blue);
  font-family: "Raleway-Bold", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--blue);
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.cta-button:hover {
  background-color: var(--blue);
  color: var(--black-2);
}

/* Footer */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--black-3);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white-2);
  font-family: "Heebo-Light", sans-serif;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-logo {
  height: 24px;
  width: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    padding: 40px 20px 28px;
  }

  .metric-number {
    font-size: 2rem;
  }

  .metric-aside {
    position: static;
    transform: none;
    font-size: 0.7rem;
    order: -1;
    margin-bottom: -4px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }
}
