/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE */
html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f7f6;
}

/* SPLASH */
#splash {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 9999;
}

#splash video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VISIBILITY */
.hidden {
  display: none;
}

/* APP LAYOUT */
.app-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* CARD */
.card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(11, 191, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0bbf7a;
}

/* TEXT */
h1 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: #0a2540;
}

.tagline {
  font-size: 0.95rem;
  color: #5f6c7b;
  margin-bottom: 1.8rem;
}

.trust {
  font-size: 0.8rem;
  color: #7b8794;
}

/* BUTTONS */
.primary-btn {
  width: 100%;
  background: #0bbf7a;
  color: #ffffff;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 0.9rem;
}

.primary-btn:hover {
  background: #0aa86d;
}

.secondary-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #dfe5e8;
  padding: 0.75rem;
  font-size: 0.9rem;
  border-radius: 12px;
  cursor: pointer;
  color: #0a2540;
  margin-bottom: 1.5rem;
}

.secondary-btn:hover {
  background: #f4f6f7;
}
