/* LiftKey Solutions — rebuilt from the Carrd site */
:root {
  --ink: #555f61;
  --ink-dark: #1f2f3d;
  --gold: #e9b93a;
  --card: rgba(255, 255, 255, 0.60);
  --card-edge: rgba(255, 255, 255, 0.55);
  --btn: rgba(255, 255, 255, 0.60);
  --btn-hover: rgba(255, 255, 255, 0.90);
  --radius: 2rem;
  --btn-radius: 3.5rem;
}

* { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans Pro", "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
  background: #6b6257;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0;
  background:
    linear-gradient(to top, rgba(206,223,242,0.11), rgba(206,223,242,0.11)),
    url("bg.jpg") center / cover no-repeat;
  filter: saturate(0.9);
}

.wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.25rem 2rem;
}

.card {
  width: 100%; max-width: 46rem;
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.12);
  padding: 2.5rem 2.75rem 2.75rem;
}
@media (max-width: 640px) {
  .card { padding: 1.75rem 1.5rem 2rem; border-radius: 1.5rem; }
}

.logo { display: block; width: 100%; max-width: 40rem; height: auto; border-radius: 0.5rem; margin: 0 auto 1.75rem; }
.logo--small { width: 7rem; margin: 0 0 1.25rem; }

h1 {
  font-weight: 300; letter-spacing: -0.03em; line-height: 1.15;
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  margin: 0 0 1.25rem; color: var(--ink);
}
.centered h1 { text-align: center; }
p { font-size: 1.15rem; margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid rgba(85,95,97,0.25); margin: 2rem 0; }

.buttons { display: flex; flex-direction: column; gap: 0.9rem; margin: 0; padding: 0; list-style: none; }
.btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.6rem;
  background: var(--btn);
  color: var(--ink); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--btn-radius);
  font-size: 1.15rem; font-weight: 300;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover, .btn:focus-visible { background: var(--btn-hover); transform: translateY(-1px); outline: none; }
.btn svg { width: 1.1rem; height: 1.1rem; flex: none; }
.btn--soon { opacity: 0.55; cursor: default; }
.btn--soon:hover { background: var(--btn); transform: none; }
.btn--soon small { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }

.nav { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(85,95,97,0.25); }
.nav a { color: var(--ink); text-decoration: none; font-size: 1rem; border-bottom: 1px solid transparent; }
.nav a:hover { border-bottom-color: var(--gold); }

.foot { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.85); text-shadow: 0 1px 2px rgba(0,0,0,0.4); text-align: center; }
.foot a { color: inherit; }
