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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: linear-gradient(155deg, #ceeaf9 0%, #f4faff 45%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
  color: #20315f;
}

.card {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  width: clamp(130px, 38vw, 175px);
  height: auto;
}

/* Heading */
.heading { text-align: center; }

.heading h1 {
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  font-weight: 800;
  color: #20315f;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.heading p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #004a98;
  opacity: 0.75;
}

/* Divider */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #0099dd, #004a98);
  border-radius: 99px;
}

/* Buttons */
.buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: #ffffff;
  border: 1.5px solid #daeef9;
  border-radius: 16px;
  text-decoration: none;
  color: #20315f;
  box-shadow: 0 2px 10px rgba(0, 74, 152, 0.07);
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 74, 152, 0.15);
  border-color: #0099dd;
  outline: none;
}

.btn:active { transform: translateY(0); }

.btn-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.btn-icon--img { background: #ddf0fc; }
.btn-icon--lab { background: #dce8f8; }
.btn-icon--enc { background: #d6e4f5; }

.btn-text { flex: 1; min-width: 0; }

.btn-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #0099dd;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
}

.btn-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: #20315f;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-arrow {
  color: #0099dd;
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.14s ease;
}

.btn:hover .btn-arrow { transform: translateX(3px); }

/* Footer */
footer {
  font-size: 0.75rem;
  color: #004a98;
  opacity: 0.4;
  text-align: center;
  margin-top: 0.5rem;
}

/* Small screens: allow title to wrap */
@media (max-width: 360px) {
  .btn-title { white-space: normal; }
}
