/* Delphi Capital Group — base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #020b14;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.card {
  max-width: 720px;
  width: 100%;
  background: radial-gradient(circle at top left, #02344a 0, #020b14 55%, #111827 100%);
  border-radius: 18px;
  padding: 40px 32px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 18px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

h1 {
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.15;
  margin-bottom: 10px;
}

h1 span {
  color: #f97316;
}

.subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 8px;
}

ul {
  list-style: none;
  font-size: 14px;
  color: #e5e7eb;
}

li + li {
  margin-top: 4px;
}

.muted {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.5;
}

.disclosure {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.20);
  font-size: 12px;
  line-height: 1.55;
  color: #9ca3af;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #f9fafb;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  box-shadow: 0 16px 30px rgba(248, 113, 22, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 20px 40px rgba(248, 113, 22, 0.55);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 12px 22px rgba(248, 113, 22, 0.35);
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.email,
.phone {
  font-size: 14px;
  color: #e5e7eb;
}

.email a,
.phone a {
  color: #93c5fd;
  text-decoration: none;
}

.email a:hover,
.phone a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 14px;
  font-size: 11px;
  color: #6b7280;
}

@media (max-width: 640px) {
  .card {
    padding: 28px 20px;
  }
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}