:root {
  --brand: #00BFAF;
  --brand-dark: #006D6A;
  --bg: #0B0D0E;
  --surface: #1B1F20;
  --divider: #1B1F20;
  --text: #E6E6E6;
  --text-muted: #B7BDBE;
  --text-dim: #8B9294;
  --text-faint: #6E7375;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

h1 {
  font-family: "Raleway", Arial, sans-serif;
  margin: 0;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Lockup de marca */

.lockup--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.lockup__isotipo { display: block; }

.lockup__text--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lockup__word {
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.lockup__descriptor {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Buttons */

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  transition: opacity 0.15s ease;
}

.btn:hover { opacity: 0.85; }

.btn--outline {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--text);
}

.btn__meta {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--brand);
  margin-top: 4px;
}

/* Badge */

.badge {
  display: inline-block;
  background: var(--brand);
  color: var(--bg);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 36px;
}

/* Coming soon layout */

.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  text-align: center;
}

.coming-soon__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 30px;
}

.coming-soon__title .accent { color: var(--brand); }

.coming-soon__teaser {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 48px;
}

.coming-soon__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon__ig {
  display: block;
  margin-top: 26px;
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
}

/* Footer */

.footer--floating {
  padding: 34px 0 0;
}

.footer__text {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

/* Responsive */

@media (max-width: 560px) {
  .coming-soon { padding: 60px 0; }
  .coming-soon__title { font-size: 32px; }
  .lockup__isotipo { width: 56px; height: 56px; }
}
