:root {
  --cream: #f7efe1;
  --cream-strong: #faf3e4;
  --navy: #08236b;
  --teal: #00b2a1;
  --text: #213449;
  --muted: #5f6871;
  --line: rgba(8, 35, 107, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, #fcf5e8 0%, var(--cream) 46%, #fff7e7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 178, 161, 0.16), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(8, 35, 107, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  pointer-events: none;
}

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

.landing {
  width: min(620px, 100%);
  padding: 36px 28px 28px;
  text-align: center;
  background: transparent;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.brand__logo {
  width: min(380px, 88vw);
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(8, 35, 107, 0.08));
}

.brand__copy {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.brand__copy--secondary {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}

.brand__story {
  margin: 0 auto 24px;
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: grid;
  gap: 12px;
  width: min(360px, 100%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(0, 178, 161, 0.2);
}

.btn--secondary {
  color: white;
  background: var(--navy);
}

.btn--ghost {
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(8, 35, 107, 0.16);
}

@media (max-width: 560px) {
  .page-shell {
    padding: 16px;
  }

  .landing {
    padding: 30px 18px;
  }

  .brand__logo {
    width: min(300px, 84vw);
  }

  .brand__copy {
    font-size: 0.92rem;
  }

  .brand__copy--secondary {
    font-size: 0.84rem;
  }

  .brand__story {
    font-size: 0.88rem;
  }
}
