/* ===========================================================
   Athleats — landing page
   Brand: ink #161d25 · green #93b52b
   =========================================================== */

@font-face {
  font-family: 'Poppins';
  src: url('Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #161d25;
  --green: #93b52b;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: var(--ink);
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
}

/* Full-height flex column: logo centred, footer pinned to the bottom.
   100dvh handles mobile browser address bars; 100vh is the fallback. */
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Centre stage — grows to fill all space above the footer */
.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vh, 28px);
  padding: clamp(20px, 6vw, 48px);
  text-align: center;
}

/* Logo scales fluidly and never overflows on small screens */
#logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

#logo img {
  width: min(86vw, 560px);
  height: auto;
  display: block;
}

/* Subtle "coming soon" label with a brand-green underline accent */
.coming-soon {
  position: relative;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 10px;
}

.coming-soon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

/* Footer pinned at bottom, centred, with a faint brand divider */
footer {
  flex: none;
  padding: clamp(16px, 3vh, 26px) 16px;
  border-top: 1px solid rgba(22, 29, 37, 0.10);
  text-align: center;
}

.copyright {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
}

/* Very small phones — tighten things up a touch */
@media (max-width: 360px) {
  .coming-soon {
    letter-spacing: 0.25em;
  }
}
