:root {
  --navy: #23244B;
  --blue: #649AD2;
  --blue-hover: #4d7fb5;
  --blue-light: #eef4fb;
  --surface: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  background: linear-gradient(135deg, #23244B 0%, #1a1b38 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.15);
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Accent stripe at top of card */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.logo {
  width: 150px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: block;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
}

.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(100,154,210,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-coming-soon {
  background: transparent;
  color: #a0a0b0;
  border: 2px dashed #c0c0d0;
  cursor: not-allowed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.75;
}

.btn-coming-soon:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 4px;
  vertical-align: middle;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

footer {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* Contact page */
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: left;
  text-decoration: none;
  color: var(--navy);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.contact-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-1px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--navy);
}

@media (max-width: 520px) {
  .card {
    padding: 40px 24px 32px;
  }
  h1 {
    font-size: 21px;
  }
  .logo {
    width: 125px;
  }
}
