/* Ovatone — Coming Soon landing page
   Implemented from Figma : Desktop + Mobile.
   Colours: base/deep-navy #050C23, deep-navy text #020829,
   primary/white #F8F8FB, accent/yellow #FFE772. */

/* Basier Circle (Atipo Foundry) — the design's typeface, self-hosted.
   NOTE: only the Regular (400) web file was provided. The badge uses Medium
   (500); with no 500 face the browser synthesizes it. Drop a
   basiercircle-medium.woff2 in and add a 500 @font-face for a true Medium. */
@font-face {
  font-family: "Basier Circle";
  src: url("assets/fonts/basiercircle-regular.woff2") format("woff2"),
    url("assets/fonts/basiercircle-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --deep-navy: #050c23;
  --navy-ink: #020829;
  --white: #f8f8fb;
  --accent: #ffe772;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--deep-navy);
  color: var(--white);
  font-family: "Basier Circle", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh; 
  padding: 40px;
  overflow: hidden;
}

.page__bg {
  position: absolute;
  inset: 0;
  background: var(--deep-navy);
  pointer-events: none;
}

.page__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.page__bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 12, 35, 0) 0%,
    var(--deep-navy) 100%
  );
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 300px;
  max-width: 100%;
  text-align: center;
}

.hero__logo {
  width: 263px;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero__tagline {
  margin: 0;
  min-width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.6px;
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--navy-ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: normal;
  white-space: nowrap;
}
