:root {
  color-scheme: light;
  --bg: #08111f;
  --bg-soft: #0f1d35;
  --card: rgba(10, 18, 31, 0.78);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #edf2ff;
  --muted: rgba(237, 242, 255, 0.72);
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(125, 211, 252, 0.16), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-soft));
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.75;
  pointer-events: none;
}

.ambient--one {
  width: 28rem;
  height: 28rem;
  top: -6rem;
  left: -6rem;
  background: rgba(56, 189, 248, 0.22);
}

.ambient--two {
  width: 22rem;
  height: 22rem;
  right: -5rem;
  bottom: -5rem;
  background: rgba(125, 211, 252, 0.18);
}

.card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.contact-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.contact-table th,
.contact-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.contact-table th {
  width: 10rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 242, 255, 0.55);
}

.contact-table td {
  color: var(--text);
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
  border-bottom: 0;
}

a {
  color: #ffffff;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration: underline;
}

.vcf-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 600;
}

.vcf-button::before {
  content: "\1F4E7";
  font-size: 0.95rem;
  line-height: 1;
}

.vcf-button:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .contact-table th,
  .contact-table td {
    padding: 0.9rem 1rem;
    white-space: nowrap;
    font-size: 0.95rem;
  }

  .contact-table th {
    width: 8.5rem;
  }

  .card {
    border-radius: 22px;
  }
}