:root {
    --primary-bg: #1b3326;
    --secondary-bg: #2b4f4d;
    --foreground-bg: #73a69d;
    --white-grey: #abb1ad;
    --white: #e9eeea;
}

@font-face {
    font-family: 'RadioCanada';
    src: url('../fonts/RadioCanada-VariableFont.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}


html, body {
    font-family: 'RadioCanada', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: var(--primary-bg);
}

*, *:before, *:after {
    box-sizing: border-box;
}

.mainContent {
    max-width: 80vw;
    margin: 0 auto;
    padding: 6vh 2vw;
    background-color: var(--primary-bg);
    color: var(--white);
}


@keyframes popOut {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    margin-bottom: 8vh;
}

.appOverview {
    background-color: var(--secondary-bg);
    border: 0.1rem solid var(--white-grey);
    padding: 4vh 2vw;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.appOverview i {
    font-size: 3rem;
    color: var(--foreground-bg);
    margin-bottom: 2vh;
}

.appOverview h3 {
    margin: 1vh 0;
    font-size: 1.5rem;
}

.appOverview p {
    font-size: 1rem;
}

.downloadsContainer {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.appDownload, .download-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--secondary-bg);
    padding: 2vh 2vw;
    border-radius: 0.8rem;
    border: 0.1rem solid var(--white-grey);
}

.appName {
    font-size: 1.3rem;
    font-weight: bold;
}

.downloadButtons {
    display: flex;
    gap: 1vw;
}

.downloadButtons button {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    padding: 1.5vh 1.5vw;
    background-color: var(--primary-bg);
    color: var(--white-grey);
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.downloadButtons button i {
    font-size: 1.2rem;
    color: var(--white-grey);
}
.app-container {
  width: 100%;
  max-width: 100%;
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 0 1.5rem;
  overflow-x: hidden;
}

.hero-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.2rem, 8vw, 5.5rem); 
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2rem;
  text-transform: uppercase;
  word-wrap: break-word;
}

.hero-description {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.6;
  color: var(--white-grey);
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.brand-highlight {
  color: var(--white);
  font-weight: 900;
  border-bottom: 3px solid var(--foreground-bg);
}

.notification-box {
  background: var(--secondary-bg);
  border: 1px solid rgba(115, 166, 157, 0.25);
  padding: 2.2rem 2rem;
  border-radius: 24px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.notification-badge {
  display: inline-block;
  background: rgba(115, 166, 157, 0.15);
  color: var(--white);
  border: 1px solid rgba(115, 166, 157, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.notification-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

.variants-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 0 7rem 0;
  text-align: center;
  border-top: 1px solid rgba(115, 166, 157, 0.15);
}

.variants-title {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--foreground-bg);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  word-wrap: break-word;
}

.variants-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--white-grey);
  max-width: 580px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .hero-section {
    padding: 4rem 0 3rem 0;
  }
  .variants-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .notification-box {
    padding: 1.7rem 1.2rem;
  }
}